Merge pull request #197 from NicolasConstant/develop
fix order init sound
This commit is contained in:
commit
6730de097c
|
@ -94,14 +94,14 @@ export class UserNotificationService {
|
|||
let settings = this.toolsService.getSettings();
|
||||
let soundId = settings.notificationSoundFileId;
|
||||
|
||||
if(this.soundFileId === soundId) return;
|
||||
|
||||
if(!soundId){
|
||||
soundId = '0';
|
||||
settings.notificationSoundFileId = '0';
|
||||
this.toolsService.saveSettings(settings);
|
||||
}
|
||||
|
||||
if(this.soundFileId === soundId) return;
|
||||
|
||||
var sound = this.getAllNotificationSounds().find(x => x.id === soundId);
|
||||
this.sound = new Howl({
|
||||
src: [sound.path]
|
||||
|
|
Loading…
Reference in New Issue