From 87d5e4697dc7189c15b73871ad8ad2cccbfb0110 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Sun, 13 Dec 2020 14:29:01 +0100 Subject: [PATCH] Some minor fixes/improvements --- ChangeLog.md | 3 +++ .../conversations/ChannelConversationManager.ts | 2 +- shared/js/ui/frames/side/ClientInfoController.ts | 15 +-------------- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 9435c704..dce6bd4c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,7 @@ # Changelog: +* **13.12.20** + - Directly connection when hitting enter on the address line + * **12.12.20** - Improved screen sharing and camara selection - Showing the echoed own stream from the server instead of the local one diff --git a/shared/js/conversations/ChannelConversationManager.ts b/shared/js/conversations/ChannelConversationManager.ts index d7cec4ce..ac364a63 100644 --- a/shared/js/conversations/ChannelConversationManager.ts +++ b/shared/js/conversations/ChannelConversationManager.ts @@ -176,7 +176,7 @@ export class ChannelConversation extends AbstractChat case "unsupported": this.crossChannelChatSupported = false; - this.setConversationMode(ChannelConversationMode.Private, true); + this.setConversationMode(ChannelConversationMode.Private, false); this.setCurrentMode("normal"); break; } diff --git a/shared/js/ui/frames/side/ClientInfoController.ts b/shared/js/ui/frames/side/ClientInfoController.ts index b7049f56..ab7c3ea4 100644 --- a/shared/js/ui/frames/side/ClientInfoController.ts +++ b/shared/js/ui/frames/side/ClientInfoController.ts @@ -81,20 +81,7 @@ export class ClientInfoController { } })); - this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_client_changed", () => { - this.sendClient(); - this.sendClientName(); - this.sendCountry(); - this.sendClientDescription(); - this.sendForum(); - this.sendChannelGroup(); - this.sendServerGroups(); - this.sendOnline(); - this.sendClientStatus(); - this.sendVolume(); - this.sendVersion(); - })); - + this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_client_changed", () => this.sendClient())); this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_cache_changed", event => { switch (event.category) { case "name":