Skip to content

Commit

Permalink
tm: fix setting t->callid_val after previous changes to keep shortcuts
Browse files Browse the repository at this point in the history
- GH #3417
  • Loading branch information
miconda committed Apr 18, 2023
1 parent 77c41d9 commit 287600c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/tm/t_msgbuilder.c
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ static inline char* print_callid(char* w, dlg_t* dialog, struct cell* t)

w = print_callid_mini(w, dialog->id.call_id);

t->callid_val.s = t->callid_val.s + CALLID_LEN;
t->callid_val.s = t->callid_hdr.s + CALLID_LEN;
t->callid_val.len = dialog->id.call_id.len;
trim(&t->callid_val);

Expand Down

0 comments on commit 287600c

Please sign in to comment.