From bad376825069a6422d4c99190fe3d1d4e3d93f66 Mon Sep 17 00:00:00 2001 From: default Date: Sat, 28 Jan 2023 18:28:00 +0100 Subject: [PATCH] Attached images have a hashed name instead of a time one. --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html.c b/html.c index 7a388a1..2d9ebe9 100644 --- a/html.c +++ b/html.c @@ -1375,8 +1375,8 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size, if (*fn != '\0') { char *ext = strrchr(fn, '.'); - xs *ntid = tid(0); - xs *id = xs_fmt("%s%s", ntid, ext); + xs *hash = xs_md5_hex(fn, strlen(fn)); + xs *id = xs_fmt("%s%s", hash, ext); xs *url = xs_fmt("%s/s/%s", snac.actor, id); int fo = xs_number_get(xs_list_get(attach_file, 1)); int fs = xs_number_get(xs_list_get(attach_file, 2));