diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-12-31 12:49:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-31 12:49:37 +0100 |
commit | 3fef47b41c98392865d13fd21bbcec34236daf4f (patch) | |
tree | 16808c6ea9ffd2cc0438d11831fd3a7503d15056 /routers/api/packages/npm | |
parent | dce8887494268c99ba5da8d5152b5d1cc03cfb83 (diff) | |
download | gitea-3fef47b41c98392865d13fd21bbcec34236daf4f.tar.gz gitea-3fef47b41c98392865d13fd21bbcec34236daf4f.zip |
Use ErrInvalidArgument in packages (#22268)
Related to
https://github.com/go-gitea/gitea/pull/22262#discussion_r1059010774
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'routers/api/packages/npm')
-rw-r--r-- | routers/api/packages/npm/npm.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/routers/api/packages/npm/npm.go b/routers/api/packages/npm/npm.go index 1a09cb6f36..0d25f173e9 100644 --- a/routers/api/packages/npm/npm.go +++ b/routers/api/packages/npm/npm.go @@ -158,7 +158,11 @@ func DownloadPackageFileByName(ctx *context.Context) { func UploadPackage(ctx *context.Context) { npmPackage, err := npm_module.ParsePackage(ctx.Req.Body) if err != nil { - apiError(ctx, http.StatusBadRequest, err) + if errors.Is(err, util.ErrInvalidArgument) { + apiError(ctx, http.StatusBadRequest, err) + } else { + apiError(ctx, http.StatusInternalServerError, err) + } return } |