diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-06-14 22:55:16 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-06-14 22:55:16 +0200 |
commit | 23295fe8df8568122e762b36114db8f3e4ef24a2 (patch) | |
tree | b61a3e166a20f91ff10e85a28ca99b3803746e02 /plugins/Matrix.hpp | |
parent | 52f8dc5d05f5e34b0a3cf4bb4e4fe607f06965c5 (diff) |
Matrix: authenticated media requests with access token
Diffstat (limited to 'plugins/Matrix.hpp')
-rw-r--r-- | plugins/Matrix.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Matrix.hpp b/plugins/Matrix.hpp index 23b0a8a..9841510 100644 --- a/plugins/Matrix.hpp +++ b/plugins/Matrix.hpp @@ -548,8 +548,9 @@ namespace QuickMedia { class MatrixVideoPage : public VideoPage { public: MatrixVideoPage(Program *program, std::string filename) : VideoPage(program, ""), filename(std::move(filename)) {} - const char* get_title() const override { return ""; } - std::string get_filename() override { return filename; } + const char* get_title() const override; + std::string get_filename() override; + std::string get_download_url_for_clipboard(int max_height) override; private: std::string filename; }; |