From 1e3c3dd1f45e9810781cb0ee13152bdc1b5a833c Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 24 Aug 2023 16:10:01 +0200 Subject: [PATCH] Remove debuging value Otherwise like of connectivity never disapear --- src/qml/Page/RoomPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Page/RoomPage.qml b/src/qml/Page/RoomPage.qml index bb4430a6a..400211a22 100644 --- a/src/qml/Page/RoomPage.qml +++ b/src/qml/Page/RoomPage.qml @@ -38,7 +38,7 @@ Kirigami.Page { Connections { target: Controller function onIsOnlineChanged() { - if (true || !Controller.isOnline) { + if (!Controller.isOnline) { banner.text = i18n("NeoChat is offline. Please check your network connection."); banner.visible = true; banner.type = Kirigami.MessageType.Error;