From 517abe91933111010d3f28956ea84929d35fd5f9 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 18 Feb 2024 00:00:02 -0500 Subject: [PATCH] fix: unneeded cast --- protocols/s5/tus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/s5/tus.go b/protocols/s5/tus.go index 28919a7..9fb8432 100644 --- a/protocols/s5/tus.go +++ b/protocols/s5/tus.go @@ -463,7 +463,7 @@ func (t *TusHandler) worker() { continue } - _, err = t.CreateUpload(info.Context, decodedHash.HashBytes(), info.Upload.ID, uint(uploaderID), uploaderIP, info.Context.Value("protocol").(string)) + _, err = t.CreateUpload(info.Context, decodedHash.HashBytes(), info.Upload.ID, uploaderID, uploaderIP, info.Context.Value("protocol").(string)) if err != nil { errorResponse.Body = "Could not create tus upload" info.Upload.StopUpload(errorResponse)