This commit is contained in:
thierrytiti 2015-04-25 14:50:25 +02:00 committed by JC Brand
parent 7ec44d56d5
commit 310d2b77f3

View File

@ -368,11 +368,11 @@
this.playNotification = function () { this.playNotification = function () {
var audio; var audio;
if (converse.play_sounds && typeof Audio !== "undefined"){ if (converse.play_sounds && typeof Audio !== "undefined"){
audio = new Audio(converse.play_sounds_path."msg_received.ogg"); audio = new Audio(converse.play_sounds_path+"msg_received.ogg");
if (audio.canPlayType('/audio/ogg')) { if (audio.canPlayType('/audio/ogg')) {
audio.play(); audio.play();
} else { } else {
audio = new Audio(converse.play_sounds_path."msg_received.mp3"); audio = new Audio(converse.play_sounds_path+"msg_received.mp3");
audio.play(); audio.play();
} }
} }