aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-11-11 10:55:49 +0100
committerdec05eba <dec05eba@protonmail.com>2022-11-11 10:55:49 +0100
commitf3937a874ce08ff9983d922383d86862696b716e (patch)
treed12485d8e5997348577b2ac1c38a40f36843f361 /plugins
parentd274d3a6dfc0864ec6a44e7d6948c2d873eb6f76 (diff)
Matrix: do not format html in room description if body is plain text
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Matrix.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Matrix.hpp b/plugins/Matrix.hpp
index 66ca0a8..9378a9f 100644
--- a/plugins/Matrix.hpp
+++ b/plugins/Matrix.hpp
@@ -26,7 +26,8 @@ namespace QuickMedia {
mgl::Color user_id_to_color(const std::string &user_id);
// |image_max_size| 0, 0 means no max size
std::string formatted_text_to_qm_text(Matrix *matrix, const char *str, size_t size, bool allow_formatted_text, mgl::vec2i image_max_size = mgl::vec2i(0, 0));
- std::string message_to_qm_text(Matrix *matrix, const Message *message, bool allow_formatted_text = true);
+ // |image_max_size| 0, 0 means no max size
+ std::string message_to_qm_text(Matrix *matrix, const Message *message, bool allow_formatted_text = true, mgl::vec2i image_max_size = mgl::vec2i(0, 0));
struct TimestampedDisplayData {
std::string data;