Commit 9b7b0197cd8fc628b8fd0ca8353a45b6d088af20
1 parent
48d0763a
Fix displaying non-text messages sent from other devices.
Showing
1 changed file
with
1 additions
and
1 deletions
libpurple/purpleline_write.cpp
... | ... | @@ -244,7 +244,7 @@ void PurpleLine::write_message(line::Message &msg, bool replay) { |
244 | 244 | if (sent) { |
245 | 245 | // Messages sent by user (sync from other devices) |
246 | 246 | |
247 | - write_message(conv, msg.from, msg.text, mtime, flags | PURPLE_MESSAGE_SEND); | |
247 | + write_message(conv, msg.from, text, mtime, flags | PURPLE_MESSAGE_SEND); | |
248 | 248 | } else { |
249 | 249 | // Messages received from other users |
250 | 250 | ... | ... |