Update NotificationSounds.plugin.js
This commit is contained in:
parent
18f71a7b9d
commit
f29bafe1fe
|
@ -69,7 +69,7 @@ var NotificationSounds = (_ => {
|
||||||
return class NotificationSounds {
|
return class NotificationSounds {
|
||||||
getName () {return "NotificationSounds";}
|
getName () {return "NotificationSounds";}
|
||||||
|
|
||||||
getVersion () {return "3.4.8";}
|
getVersion () {return "3.4.9";}
|
||||||
|
|
||||||
getAuthor () {return "DevilBro";}
|
getAuthor () {return "DevilBro";}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ var NotificationSounds = (_ => {
|
||||||
|
|
||||||
constructor () {
|
constructor () {
|
||||||
this.changelog = {
|
this.changelog = {
|
||||||
"improved":[["Remove Songs","You can now remove songs that you added to the default categories"]]
|
"improved":[["Start Over","When someone calls you again the call sound now starts over instead of continuing from the last time"]]
|
||||||
};
|
};
|
||||||
|
|
||||||
this.patchedModules = {
|
this.patchedModules = {
|
||||||
|
@ -476,11 +476,13 @@ var NotificationSounds = (_ => {
|
||||||
audio.volume = choices[type].volume/100;
|
audio.volume = choices[type].volume/100;
|
||||||
e.returnValue.play = _ => {
|
e.returnValue.play = _ => {
|
||||||
if (!audio.paused || this.dontPlayAudio(type)) return;
|
if (!audio.paused || this.dontPlayAudio(type)) return;
|
||||||
|
audio.currentTime = 0;
|
||||||
audio.loop = false;
|
audio.loop = false;
|
||||||
audio.play();
|
audio.play();
|
||||||
};
|
};
|
||||||
e.returnValue.loop = _ => {
|
e.returnValue.loop = _ => {
|
||||||
if (!audio.paused || this.dontPlayAudio(type)) return;
|
if (!audio.paused || this.dontPlayAudio(type)) return;
|
||||||
|
audio.currentTime = 0;
|
||||||
audio.loop = true;
|
audio.loop = true;
|
||||||
audio.play();
|
audio.play();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue