Remove badge on logout; fix use of old turn term.

This commit is contained in:
yukirij 2024-09-29 12:24:16 -07:00
parent a89636c846
commit 359076563b

View File

@ -170,6 +170,7 @@ const UI = {
if(sessionStorage.getItem("auth") !== null) {
bottom.push(UI.button(LANG("account"), () => { }));
bottom.push(UI.button(LANG("logout"), () => {
BADGE_UPDATE(false);
MESSAGE_COMPOSE([
PACK.u16(OpCode.Deauthenticate),
]);
@ -296,7 +297,7 @@ const UI = {
}
let tbody = UI.table_content(
[ LANG("handle"), LANG("turn"), LANG("viewers"), "" ],
[ LANG("handle"), LANG("turns"), LANG("viewers"), "" ],
rows,
);