Skip to content

Commit

Permalink
Fix interpreting the "values" content from DB
Browse files Browse the repository at this point in the history
Alternative to  #618
Credits go to Minh PHAN ( @qmphan)
  • Loading branch information
bogdan-iancu committed Aug 26, 2015
1 parent 9225861 commit 18c1ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dialog/dlg_db_handler.c
Expand Up @@ -1615,7 +1615,7 @@ static int sync_dlg_db_mem(void)
* and replace with new one */
if (!VAL_NULL(values+18))
read_dialog_vars( VAL_STR(values+18).s,
VAL_STR(values+18).len, known_dlg);
strlen(VAL_STR(values+18).s), known_dlg);

/* profiles - do not insert into a profile
* is dlg is already in that profile*/
Expand Down

0 comments on commit 18c1ebc

Please sign in to comment.