This commit is contained in:
Mirco Wittrien 2024-02-28 17:13:39 +01:00
commit 6cfa8194b8
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @name NotificationSounds * @name NotificationSounds
* @author DevilBro * @author DevilBro
* @authorId 278543574059057154 * @authorId 278543574059057154
* @version 3.9.3 * @version 3.9.4
* @description Allows you to replace the native Sounds with custom Sounds * @description Allows you to replace the native Sounds with custom Sounds
* @invite Jx3TjNS * @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien * @donate https://www.paypal.me/MircoWittrien
@ -260,12 +260,12 @@ module.exports = (_ => {
if (isCurrent && BDFDB.LibraryStores.NotificationSettingsStore.getNotifyMessagesInSelectedChannel()) { if (isCurrent && BDFDB.LibraryStores.NotificationSettingsStore.getNotifyMessagesInSelectedChannel()) {
this.fireEvent("message3"); this.fireEvent("message3");
this.playAudio("message3"); !document.hasFocus() && this.playAudio("message3");
return; return;
} }
else if (!guildId) { else if (!guildId) {
this.fireEvent(isGroupDM ? "groupdm" : "dm"); this.fireEvent(isGroupDM ? "groupdm" : "dm");
this.playAudio(isGroupDM ? "groupdm" : "dm"); !document.hasFocus() && this.playAudio(isGroupDM ? "groupdm" : "dm");
return; return;
} }
else if (guildId) { else if (guildId) {