diff options
-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; } }); |