default case

This commit is contained in:
pypy
2021-01-21 12:30:42 +09:00
parent a1c681625f
commit d37bcde2cc
2 changed files with 9 additions and 0 deletions

View File

@@ -4751,6 +4751,9 @@ speechSynthesis.getVoices();
data: gameLog.json data: gameLog.json
}; };
break; break;
default:
break;
} }
if (tableData !== null) { if (tableData !== null) {

View File

@@ -1014,6 +1014,8 @@ speechSynthesis.getVoices();
case 'unmute': case 'unmute':
text = `<strong>${noty.sourceDisplayName}</strong> has unmuted you`; text = `<strong>${noty.sourceDisplayName}</strong> has unmuted you`;
break; break;
default:
break;
} }
if (text) { if (text) {
new Noty({ new Noty({
@@ -1084,6 +1086,8 @@ speechSynthesis.getVoices();
case 'unmute': case 'unmute':
this.speak(`${noty.sourceDisplayName} has unmuted you`); this.speak(`${noty.sourceDisplayName} has unmuted you`);
break; break;
default:
break;
} }
} }
if ((this.config.desktopToast) && (this.isGameNoVR)) { if ((this.config.desktopToast) && (this.isGameNoVR)) {
@@ -1143,6 +1147,8 @@ speechSynthesis.getVoices();
case 'DisplayName': case 'DisplayName':
AppApi.DesktopNotification(noty.previousDisplayName, `changed their name to ${noty.displayName}`, imageURL); AppApi.DesktopNotification(noty.previousDisplayName, `changed their name to ${noty.displayName}`, imageURL);
break; break;
default:
break;
} }
} }
} }