mirror of
https://github.com/go-gitea/gitea
synced 2025-07-07 19:17:21 +00:00
enable staticcheck QFxxxx rules (#34064)
This commit is contained in:
@ -164,11 +164,12 @@ func BatchHandler(ctx *context.Context) {
|
||||
}
|
||||
|
||||
var isUpload bool
|
||||
if br.Operation == "upload" {
|
||||
switch br.Operation {
|
||||
case "upload":
|
||||
isUpload = true
|
||||
} else if br.Operation == "download" {
|
||||
case "download":
|
||||
isUpload = false
|
||||
} else {
|
||||
default:
|
||||
log.Trace("Attempt to BATCH with invalid operation: %s", br.Operation)
|
||||
writeStatus(ctx, http.StatusBadRequest)
|
||||
return
|
||||
|
Reference in New Issue
Block a user