diff options
author | link2xt <link2xt@testrun.org> | 2020-10-06 21:17:27 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2020-10-06 21:17:27 +0300 |
commit | 497496626820d0a649a5eb5c785e2b388ac6d488 (patch) | |
tree | 6d3f230246e454eeafc54ce9e37c67d628770a1d /qml/ChatlistPage.qml | |
parent | 03073bffc681ee2e24377c24f1191dbafb4afe58 (diff) | |
download | kdeltachat-497496626820d0a649a5eb5c785e2b388ac6d488.tar.gz kdeltachat-497496626820d0a649a5eb5c785e2b388ac6d488.zip |
ChatlistPage.qml: log errors when loading ChatPage
Diffstat (limited to 'qml/ChatlistPage.qml')
-rw-r--r-- | qml/ChatlistPage.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index 3a5259a..83eda0f 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -90,6 +90,8 @@ Kirigami.Page { pageStack.currentIndex = 2 pageStack.replace(myPage) } + } else if (chatPageComponent.status == Component.Error) { + console.log("Error loading chat page: " + chatPageComponent.errorString()) } } |