From e602391bd7313f7ee5cef4f2ee357fd378a1d14f Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 25 Dec 2025 12:33:31 -0600 Subject: [PATCH] Don't think it's necessary to include a name but the upload is failing for some reason --- KfChatDotNetBot/Services/Zipline.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/Zipline.cs b/KfChatDotNetBot/Services/Zipline.cs index 778f6af..b095bdd 100644 --- a/KfChatDotNetBot/Services/Zipline.cs +++ b/KfChatDotNetBot/Services/Zipline.cs @@ -33,7 +33,7 @@ public static class Zipline using var formContent = new MultipartFormDataContent(); var fileContent = new StreamContent(content); fileContent.Headers.ContentType = mimeType; - formContent.Add(fileContent); + formContent.Add(fileContent, "upload", Money.GenerateEventId()); client.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", settings[BuiltIn.Keys.ZiplineKey].Value); if (expiration != null) {