diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-09-28 00:21:23 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-09-28 00:21:23 +0200 |
commit | 90c13efab1fd1b67625ec23815ccc195803e230e (patch) | |
tree | 3bb0c28e8be756df9344a95dbd888450bb694113 /plugins | |
parent | b3fb1615038e821fb9abf60788ccdead04dd005a (diff) |
Matrix: fix login with pantalaimon proxy, fix logout crash, show real login error
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/FileManager.hpp | 1 | ||||
-rw-r--r-- | plugins/Matrix.hpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/FileManager.hpp b/plugins/FileManager.hpp index d5d7088..f13184b 100644 --- a/plugins/FileManager.hpp +++ b/plugins/FileManager.hpp @@ -7,6 +7,7 @@ namespace QuickMedia { class FileManager : public Plugin { public: FileManager(); + virtual ~FileManager() = default; PluginResult get_files_in_directory(BodyItems &result_items); bool set_current_directory(const std::string &path); bool set_child_directory(const std::string &filename); diff --git a/plugins/Matrix.hpp b/plugins/Matrix.hpp index 760d543..97ba3cc 100644 --- a/plugins/Matrix.hpp +++ b/plugins/Matrix.hpp @@ -55,6 +55,7 @@ namespace QuickMedia { class Matrix : public Plugin { public: Matrix(); + virtual ~Matrix() = default; bool search_is_filter() override { return true; } bool search_suggestions_has_thumbnails() const override { return true; } bool search_results_has_thumbnails() const override { return false; } |