Browse Source

Disable notiifcation sound by default

Fix applying notification sound toggle
master
morethanwords 3 years ago
parent
commit
8bf4d9c42b
  1. 4
      src/lib/appManagers/appNotificationsManager.ts
  2. 2
      src/lib/appManagers/appStateManager.ts
  3. 6
      src/lib/langPack.ts

4
src/lib/appManagers/appNotificationsManager.ts

@ -261,7 +261,7 @@ export class AppNotificationsManager { @@ -261,7 +261,7 @@ export class AppNotificationsManager {
}
}
public updateLocalSettings() {
public updateLocalSettings = () => {
Promise.all(['notify_nodesktop', 'notify_volume', 'notify_novibrate', 'notify_nopreview', 'notify_nopush'].map(k => sessionStorage.get(k as any)))
.then((updSettings) => {
this.settings.nodesktop = updSettings[0];
@ -439,7 +439,7 @@ export class AppNotificationsManager { @@ -439,7 +439,7 @@ export class AppNotificationsManager {
public start() {
this.updateLocalSettings();
//rootScope.on('settings_changed', this.updateNotifySettings);
rootScope.on('settings_updated', this.updateLocalSettings);
//WebPushApiManager.start();
if(!this.notificationsUiSupport) {

2
src/lib/appManagers/appStateManager.ts

@ -114,7 +114,7 @@ export const STATE_INIT: State = { @@ -114,7 +114,7 @@ export const STATE_INIT: State = {
slug: 'ByxGo2lrMFAIAAAAmkJxZabh8eM', // * new blurred camomile
},
notifications: {
sound: true
sound: false
}
},
drafts: {}

6
src/lib/langPack.ts

@ -151,10 +151,12 @@ namespace I18n { @@ -151,10 +151,12 @@ namespace I18n {
} else if(str._ === 'langPackString') {
out = str.value;
} else {
out = '[' + key + ']';
//out = '[' + key + ']';
out = key;
}
} else {
out = '[' + key + ']';
//out = '[' + key + ']';
out = key;
}
if(args?.length) {

Loading…
Cancel
Save