From 8a1e586b280c31e88d0fbddc17c4643e0e6b2820 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 3 Feb 2024 20:00:40 -0500 Subject: [PATCH] fix: need to allow Upload-Concat through cors --- api/s5/s5.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/s5/s5.go b/api/s5/s5.go index 85224a5..b469f05 100644 --- a/api/s5/s5.go +++ b/api/s5/s5.go @@ -212,7 +212,9 @@ func BuildS5TusApi(identity ed25519.PrivateKey, accounts *account.AccountService "Tus-Resumable", "Tus-Extension", "Tus-Max-Size", - "X-HTTP-Method-Override"}, + "X-HTTP-Method-Override", + "Upload-Concat", + }, AllowCredentials: true, })