diff --git a/html/src/app.js b/html/src/app.js index 03ebb641..50f15841 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -4751,6 +4751,9 @@ speechSynthesis.getVoices(); data: gameLog.json }; break; + + default: + break; } if (tableData !== null) { diff --git a/html/src/vr.js b/html/src/vr.js index b16d5876..4ddde6e0 100644 --- a/html/src/vr.js +++ b/html/src/vr.js @@ -1014,6 +1014,8 @@ speechSynthesis.getVoices(); case 'unmute': text = `${noty.sourceDisplayName} has unmuted you`; break; + default: + break; } if (text) { new Noty({ @@ -1084,6 +1086,8 @@ speechSynthesis.getVoices(); case 'unmute': this.speak(`${noty.sourceDisplayName} has unmuted you`); break; + default: + break; } } if ((this.config.desktopToast) && (this.isGameNoVR)) { @@ -1143,6 +1147,8 @@ speechSynthesis.getVoices(); case 'DisplayName': AppApi.DesktopNotification(noty.previousDisplayName, `changed their name to ${noty.displayName}`, imageURL); break; + default: + break; } } }