Commit 7d61e25a authored by Vysheng's avatar Vysheng

Print info about forwarded message

parent eeb7f6d3
......@@ -612,8 +612,10 @@ int our_id;
void print_service_message (struct message *M) {
print_start ();
push_color (COLOR_GREY);
push_color (COLOR_MAGENTA);
print_date (M->date);
pop_color ();
printf (" ");
print_chat_name (M->to_id, user_chat_get (M->to_id));
printf (" ");
......@@ -706,6 +708,11 @@ void print_message (struct message *M) {
printf (" »»» ");
}
}
if (M->fwd_from_id) {
printf ("[fwd from ");
print_user_name (M->fwd_from_id, user_chat_get (M->fwd_from_id));
printf ("] ");
}
if (M->message && strlen (M->message)) {
printf ("%s", M->message);
}
......
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