dd
This commit is contained in:
parent
151da5e43b
commit
572f9f6c68
|
@ -9,22 +9,22 @@
|
||||||
|
|
||||||
|
|
||||||
this.optionSubscription = this.store
|
this.optionSubscription = this.store
|
||||||
.pipe(select(OptionStore..reg))
|
.pipe(select(OptionStore..reg))
|
||||||
.subscribe((reg) => {
|
.subscribe((reg) => {
|
||||||
if (!!reg) {
|
if (!!reg) {
|
||||||
const modifiedSettings: Settings = clone(this.appUserInfo.settings);
|
const modifiedSettings: Settings = clone(this.appUserInfo.settings);
|
||||||
// 모바일에서 해당 값만 수정함.
|
// 모바일에서 해당 값만 수정함.
|
||||||
modifiedSettings.notification.receiveForMobile =
|
modifiedSettings.notification.receiveForMobile =
|
||||||
reg.mobileNotification === 0 ? false : true;
|
reg.mobileNotification === 0 ? false : true;
|
||||||
this.appUserInfo.settings = modifiedSettings;
|
this.appUserInfo.settings = modifiedSettings;
|
||||||
|
|
||||||
this.localStorageService.encSet<AppUserInfo>(
|
this.localStorageService.encSet<AppUserInfo>(
|
||||||
KEY_APP_USER_INFO,
|
KEY_APP_USER_INFO,
|
||||||
this.appUserInfo,
|
this.appUserInfo,
|
||||||
environment.customConfig.appKey
|
environment.customConfig.appKey
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
test05번 계정에서 3명사용자가 있는 '대화방변경' 대화방이 있는데요..
|
test05번 계정에서 3명사용자가 있는 '대화방변경' 대화방이 있는데요..
|
||||||
|
|
Loading…
Reference in New Issue
Block a user