bugfix :: 그룹대화방 열려 있는 상태에서 대화상대 추가시 대화상대리스트 갱신되지 않는 문제 수정.

This commit is contained in:
leejinho 2020-02-10 13:02:56 +09:00
parent 8b96760554
commit a4b43d4f2e
2 changed files with 9 additions and 3 deletions

View File

@ -165,8 +165,6 @@ export class IntegratedSearchDialogComponent implements OnInit, OnDestroy {
})
);
}
console.log(this.searchUserInfos);
}
break;
}

View File

@ -273,7 +273,15 @@ export class Effects {
})
.pipe(
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 })))
);