bugfix :: 그룹대화방 열려 있는 상태에서 대화상대 추가시 대화상대리스트 갱신되지 않는 문제 수정.
This commit is contained in:
parent
8b96760554
commit
a4b43d4f2e
|
@ -165,8 +165,6 @@ export class IntegratedSearchDialogComponent implements OnInit, OnDestroy {
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(this.searchUserInfos);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -273,7 +273,15 @@ export class Effects {
|
||||||
})
|
})
|
||||||
.pipe(
|
.pipe(
|
||||||
map((res: InviteResponse) => {
|
map((res: InviteResponse) => {
|
||||||
return inviteSuccess(res);
|
// return inviteSuccess(res);
|
||||||
|
const loginInfo = this.sessionStorageService.get<LoginInfo>(
|
||||||
|
KEY_LOGIN_INFO
|
||||||
|
);
|
||||||
|
return info({
|
||||||
|
roomSeq: res.roomSeq,
|
||||||
|
isDetail: true,
|
||||||
|
localeCode: loginInfo.localeCode
|
||||||
|
});
|
||||||
}),
|
}),
|
||||||
catchError(error => of(inviteFailure({ error })))
|
catchError(error => of(inviteFailure({ error })))
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user