This commit is contained in:
Will Hunt 2019-04-19 21:42:18 +01:00
parent 63ab7736ca
commit d33df45c5e
3 changed files with 10 additions and 15 deletions

View file

@ -120,7 +120,7 @@ const Notifier = {
console.warn(`${room.roomId} has custom notification sound event, but no url key`);
return null;
}
return {
url: MatrixClientPeg.get().mxcUrlToHttp(content.url),
name: content.name,
@ -138,7 +138,7 @@ const Notifier = {
let audioElement = selector;
if (!selector) {
if (!sound) {
console.error("Tried to play alert sound but missing #messageAudio")
console.error("Tried to play alert sound but missing #messageAudio");
return;
}
audioElement = new Audio(sound.url);
@ -150,7 +150,7 @@ const Notifier = {
audioElement.play();
}).catch((ex) => {
console.warn("Caught error when trying to fetch room notification sound:", ex);
})
});
},
start: function() {