diff options
Diffstat (limited to 'plugins/Matrix.hpp')
-rw-r--r-- | plugins/Matrix.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Matrix.hpp b/plugins/Matrix.hpp index 23b0a8a..f8b10ae 100644 --- a/plugins/Matrix.hpp +++ b/plugins/Matrix.hpp @@ -18,7 +18,7 @@ namespace QuickMedia { struct RoomData; struct Message; - static const int AUTHOR_MAX_LENGTH = 48; + static const int AUTHOR_MAX_LENGTH = 192; class Matrix; @@ -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; }; |