Skip to content

Commit

Permalink
fix(admin): continue on track match error
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed Feb 23, 2023
1 parent ac74b35 commit 16e6046
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/ctrladmin/handlers_playlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ func playlistParseUpload(c *Controller, userID int, header *multipart.FileHeader
if err != nil {
// trim length of error to not overflow cookie flash
errors = append(errors, fmt.Sprintf("%.100s", err.Error()))
continue
}
if trackID.Value != 0 {
trackIDs = append(trackIDs, *trackID)
Expand Down

0 comments on commit 16e6046

Please sign in to comment.