This commit is contained in:
Park Byung Eun 2020-04-07 18:51:47 +09:00
parent 151da5e43b
commit 572f9f6c68

View File

@ -9,22 +9,22 @@
this.optionSubscription = this.store
.pipe(select(OptionStore..reg))
.subscribe((reg) => {
if (!!reg) {
const modifiedSettings: Settings = clone(this.appUserInfo.settings);
// 모바일에서 해당 값만 수정함.
modifiedSettings.notification.receiveForMobile =
reg.mobileNotification === 0 ? false : true;
this.appUserInfo.settings = modifiedSettings;
.pipe(select(OptionStore..reg))
.subscribe((reg) => {
if (!!reg) {
const modifiedSettings: Settings = clone(this.appUserInfo.settings);
// 모바일에서 해당 값만 수정함.
modifiedSettings.notification.receiveForMobile =
reg.mobileNotification === 0 ? false : true;
this.appUserInfo.settings = modifiedSettings;
this.localStorageService.encSet<AppUserInfo>(
KEY_APP_USER_INFO,
this.appUserInfo,
environment.customConfig.appKey
);
}
});
this.localStorageService.encSet<AppUserInfo>(
KEY_APP_USER_INFO,
this.appUserInfo,
environment.customConfig.appKey
);
}
});
test05번 계정에서 3명사용자가 있는 '대화방변경' 대화방이 있는데요..