Remove debuging value

Otherwise like of connectivity never disapear
This commit is contained in:
Carl Schwan
2023-08-24 16:10:01 +02:00
parent 6f4d2c0216
commit 1e3c3dd1f4

View File

@@ -38,7 +38,7 @@ Kirigami.Page {
Connections { Connections {
target: Controller target: Controller
function onIsOnlineChanged() { function onIsOnlineChanged() {
if (true || !Controller.isOnline) { if (!Controller.isOnline) {
banner.text = i18n("NeoChat is offline. Please check your network connection."); banner.text = i18n("NeoChat is offline. Please check your network connection.");
banner.visible = true; banner.visible = true;
banner.type = Kirigami.MessageType.Error; banner.type = Kirigami.MessageType.Error;