Remove debuging value

Otherwise like of connectivity never disapear

(cherry picked from commit 1e3c3dd1f4)
This commit is contained in:
Carl Schwan
2023-08-24 16:10:01 +02:00
parent 0d890ce3d6
commit bb2e2fddcc

View File

@@ -46,7 +46,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;