Skip to content

Commit

Permalink
dialog: rpc set state change to DLG_FLAG_CHANGED instead of DLG_FLAG_NEW
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Sep 8, 2021
1 parent d0b1d4b commit b86d249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/dialog/dialog.c
Expand Up @@ -2706,7 +2706,7 @@ static void rpc_dlg_set_state(rpc_t *rpc,void *c){
dlg->init_ts = (unsigned int)(time(0));
dlg->end_ts = (unsigned int)(time(0));
}
dlg->dflags |= DLG_FLAG_NEW;
dlg->dflags |= DLG_FLAG_CHANGED;

dlg_unref(dlg, unref);

Expand Down

0 comments on commit b86d249

Please sign in to comment.