diff options
| author | grunfink <grunfink@comam.es> | 2025-06-19 19:31:42 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-06-19 19:31:42 +0200 |
| commit | 8fdfb5b70d638b0f3c426c8a3ea7d2c2c0937a05 (patch) | |
| tree | f52fe315ed0d408195bd5cd574230ded28135945 | |
| parent | a07458f408c304ae9d037c95bee77dbf4522f3f0 (diff) | |
Fixed bug in export_posts().
| -rw-r--r-- | utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -766,6 +766,9 @@ void export_posts(snac *user) if (!xs_is_string(atto) || strcmp(atto, user->actor)) continue; + if (cnt) + fprintf(f, ","); + xs *c_msg = msg_create(user, obj); xs_json_dump(c_msg, 0, f); cnt++; |