From 5b7ef10aae2d9a19ad1745d076b7205488f82abc Mon Sep 17 00:00:00 2001 From: Prateek Sachan Date: Mon, 30 Mar 2020 14:24:58 +0530 Subject: [PATCH] fix goimports --- mediaapi/routing/routing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediaapi/routing/routing.go b/mediaapi/routing/routing.go index d5348e5d4..e27e98b5f 100644 --- a/mediaapi/routing/routing.go +++ b/mediaapi/routing/routing.go @@ -62,7 +62,7 @@ func Setup( r0mux.Handle("/upload", common.MakeAuthAPI( "upload", authData, func(req *http.Request, dev *authtypes.Device) util.JSONResponse { - return Upload(req, cfg, dev, db, activeThumbnailGeneration, ) + return Upload(req, cfg, dev, db, activeThumbnailGeneration) }, )).Methods(http.MethodPost, http.MethodOptions)