diff --git a/chat/Chat.vue b/chat/Chat.vue index 8329e30..b72f08b 100644 --- a/chat/Chat.vue +++ b/chat/Chat.vue @@ -124,7 +124,7 @@ core.register('conversations', Conversations()); core.connection.onEvent('closed', async(isReconnect) => { if(isReconnect) (this.$refs['reconnecting']).show(true); - if(this.connected) await core.notifications.playSound('logout'); + if(this.connected) core.notifications.playSound('logout'); this.connected = false; this.connecting = false; document.title = l('title'); @@ -138,7 +138,7 @@ this.error = ''; this.connecting = false; this.connected = true; - await core.notifications.playSound('login'); + core.notifications.playSound('login'); document.title = l('title.connected', core.connection.character); }); core.watch(() => core.conversations.hasNew, (hasNew) => { diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 2adcf79..0c97ae3 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -4,7 +4,7 @@ @touchend="$refs['userMenu'].handleEvent($event)"> - {{ownCharacter.name}} + {{ownCharacter.name}} {{l('chat.logout')}}
{{l('chat.status')}} diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 22117b4..9105aa7 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -26,7 +26,7 @@
{{conversation.name}}
- + {{l('channel.description')}} @@ -69,13 +69,13 @@
-
+