Commit 8bcd9378 authored by vvaltman's avatar vvaltman

partial reply support

parent b4b7a8db
...@@ -2986,6 +2986,9 @@ void print_message (struct in_ev *ev, struct tgl_message *M) { ...@@ -2986,6 +2986,9 @@ void print_message (struct in_ev *ev, struct tgl_message *M) {
print_user_name (ev, M->fwd_from_id, tgl_peer_get (TLS, M->fwd_from_id)); print_user_name (ev, M->fwd_from_id, tgl_peer_get (TLS, M->fwd_from_id));
mprintf (ev, "] "); mprintf (ev, "] ");
} }
if (M->reply_id) {
mprintf (ev, "[reply to %d] ", M->reply_id);
}
if (M->message && strlen (M->message)) { if (M->message && strlen (M->message)) {
mprintf (ev, "%s", M->message); mprintf (ev, "%s", M->message);
} }
......
Subproject commit bd8b43753d9f47290570a5f262126169f4a52f89 Subproject commit 01a4d84afefc8aabbb2785e84c1f5d91b55d3e25
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment