bug fixed

This commit is contained in:
병준 박 2019-10-11 13:17:52 +09:00
parent eb93a1743a
commit f4f986944b

View File

@ -140,7 +140,7 @@ export class Effects {
)
),
tap(([action, roomInfo]) => {
if (roomInfo.roomSeq === action.roomSeq) {
if (!!roomInfo && roomInfo.roomSeq === action.roomSeq) {
this.store.dispatch(appendInfoList({ info: action.info }));
}