From 834424eccc043a9ad5be42f8a79f34af01176efc Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 24 Oct 2022 16:53:46 +0200 Subject: [PATCH] Fix more QML warnings --- src/qml/main.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qml/main.qml b/src/qml/main.qml index 9c7941cec..201768d02 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -383,6 +383,9 @@ Kirigami.ApplicationWindow { Connections { target: Controller.activeConnection + + //TODO Remove this when the E2EE flag in libQuotient goes away + ignoreUnknownSignals: true function onDirectChatAvailable(directChat) { RoomManager.enterRoom(Controller.activeConnection.room(directChat.id)); }