diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-11-16 15:21:46 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-11-16 15:21:46 +0100 |
commit | 459f11326feb68947905e267960b736ba0dff8a2 (patch) | |
tree | df54ca5c5132fd7403fadab28579c3b00cddfa51 /plugins | |
parent | 4e3a32ea4478e547215c6775313aaded3bc16b08 (diff) |
Matrix: fix crash when failing to send message or read marker
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Matrix.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Matrix.hpp b/plugins/Matrix.hpp index 789b301..4514b4c 100644 --- a/plugins/Matrix.hpp +++ b/plugins/Matrix.hpp @@ -455,7 +455,7 @@ namespace QuickMedia { PluginResult on_start_typing(RoomData *room); PluginResult on_stop_typing(RoomData *room); - PluginResult set_read_marker(RoomData *room, const Message *message); + PluginResult set_read_marker(RoomData *room, const std::string &event_id); PluginResult join_room(const std::string &room_id); PluginResult leave_room(const std::string &room_id); |