Skip to content

Commit

Permalink
osz 제거 옵션 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
thftgr committed Sep 3, 2023
1 parent 95fc5d6 commit 1a626a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion route/download/downloadBeatmapSetV2.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ func DownloadBeatmapSetV2(c echo.Context) (err error) {
}
}

rd, e := rebuildOsz(data, req.IsNoVideo(), req.IsNoBackground(), req.IsNoHitsound(), req.IsNoStoryboard())
//nv, nh, nb, ns
rd, e := rebuildOsz(data, req.IsNoVideo(), req.IsNoHitsound(), req.IsNoBackground(), req.IsNoStoryboard())
if e != nil {
logger.Error(e)
return e
Expand Down

0 comments on commit 1a626a9

Please sign in to comment.