diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-07-06 22:00:44 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-07-06 22:00:44 +0200 |
commit | 5f1814a92ef45a7bfc33d48c75ac1db7f566cda0 (patch) | |
tree | 12587f2f502aaa8fbb92a67514c4e208829d06b5 | |
parent | a9aec3a88e257794c319d3ee0b7155911bea1d8c (diff) |
More helpful login failure error
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/QuickMedia.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,7 @@ If you are running arch linux then you can install QuickMedia from aur (https:// ### General control Type text and then wait and QuickMedia will automatically search.\ `Enter`: Go to the page in the selected item.\ -`Esc`: Go back to the previous page or close QuickMedia if there is no previous page.\ +`Esc`: Go back to the previous page or close QuickMedia if there is no previous page (for all plugins except matrix).\ `Up`/`Ctrl+K`: Move up.\ `Down`/`Ctrl+J`: Move down.\ `Left`/`Ctrl+H`: Move left.\ diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp index 8fb8ab9..b30a448 100644 --- a/src/QuickMedia.cpp +++ b/src/QuickMedia.cpp @@ -4258,7 +4258,7 @@ namespace QuickMedia { current_page = PageType::CHAT; return true; } else { - show_notification("QuickMedia", "Failed to login, error: " + err_msg, Urgency::CRITICAL); + show_notification("QuickMedia", "Failed to login, error: " + err_msg + ". Did you perhaps specify an invalid homeserver?", Urgency::CRITICAL); return false; } }); |