v0.0.12 - fixed nip94 test

This commit is contained in:
Your Name
2025-09-10 13:15:18 -04:00
parent 6a4e15670d
commit 60644919b6
7 changed files with 62 additions and 187 deletions

View File

@@ -1405,7 +1405,7 @@ process_file_upload:
printf("Content-Type: application/json\r\n\r\n");
printf("{\n");
printf(" \"sha256\": \"%s\",\n", sha256_hex);
printf(" \"size\": %zu,\n", file_size);
printf(" \"size\": %ld,\n", (long)file_size);
printf(" \"type\": \"%s\",\n", content_type);
printf(" \"uploaded\": %ld,\n", uploaded_time);
printf(" \"url\": \"%s\"", blob_url);