diff options
author | default <nobody@localhost> | 2022-09-26 11:19:45 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-26 11:19:45 +0200 |
commit | fd6f71bfe36331d046e4183c2c133c6f01c9af2d (patch) | |
tree | 2523108550567f4f20d0b3e3d8ec703f09a05c4d /data.c | |
parent | acc467c0346535f9f71b62bf68cbfbea7d1db0ee (diff) |
More work but signatures seem to still fail.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -302,8 +302,8 @@ int timeline_here(snac *snac, char *id) d_char *timeline_find(snac *snac, char *id) /* gets a message from the timeline by id */ { - xs *fn = _timeline_find_fn(snac, id); - xs *msg = NULL; + xs *fn = _timeline_find_fn(snac, id); + d_char *msg = NULL; if (fn != NULL) { FILE *f; @@ -820,7 +820,7 @@ void enqueue_output(snac *snac, char *msg, char *actor, int retries) return; } - int qrt = xs_number_get(xs_dict_get(srv_config, "query_retry_minutes")); + int qrt = xs_number_get(xs_dict_get(srv_config, "queue_retry_minutes")); xs *ntid = tid(retries * 60 * qrt); xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid); xs *tfn = xs_fmt("%s.tmp", fn); |