fix mic status label

main
Namekuji 2023-04-28 21:16:23 -04:00
rodzic 03e5cb4f02
commit 6f7b58f2e2
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -258,12 +258,12 @@ export default {
return mdiMicrophone; return mdiMicrophone;
}, },
micStatusLabel() { micStatusLabel() {
if (!this.micGranted) {
return this.$t("micStatus.retry");
}
if (!(this.iamHost || this.iamCohost || this.iamSpeaker)) { if (!(this.iamHost || this.iamCohost || this.iamSpeaker)) {
return this.$t("micStatus.request"); return this.$t("micStatus.request");
} }
if (!this.micGranted) {
return this.$t("micStatus.retry");
}
if (this.iamMuted) { if (this.iamMuted) {
return this.$t("micStatus.unmute"); return this.$t("micStatus.unmute");
} }