diff options
author | default <nobody@localhost> | 2023-08-14 20:11:03 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-14 20:11:03 +0200 |
commit | 2bea378610c6402f201a9b01b9d22c19ceb2a215 (patch) | |
tree | 31f97e048d0b52904baee52a2142d481b38c281e /data.c | |
parent | 8f09e4cb78c92b65951ecc9f556e07a8467b9dcc (diff) |
mastoapi: Some tweaks to process posts with 'name' and 'image' fields.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -591,7 +591,7 @@ int object_get_by_md5(const char *md5, xs_dict **obj) /* returns a stored object, optionally of the requested type */ { int status = 404; - xs *fn = _object_fn_by_md5(md5, "object_get_my_md5"); + xs *fn = _object_fn_by_md5(md5, "object_get_by_md5"); FILE *f; if ((f = fopen(fn, "r")) != NULL) { |