aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mediaapi/routing/routing.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediaapi/routing/routing.go b/mediaapi/routing/routing.go
index 3a8cb9ca..0f226664 100644
--- a/mediaapi/routing/routing.go
+++ b/mediaapi/routing/routing.go
@@ -99,7 +99,7 @@ func makeDownloadAPI(
util.SetCORSHeaders(w)
// Content-Type will be overridden in case of returning file data, else we respond with JSON-formatted errors
w.Header().Set("Content-Type", "application/json")
- vars := mux.Vars(req)
+ vars, _ := common.URLDecodeMapValues(mux.Vars(req))
Download(
w,
req,