Skip to content

Commit

Permalink
Correctly parse singer index
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Wo <[email protected]>
  • Loading branch information
brainwo committed Aug 15, 2024
1 parent 1901f26 commit 2448d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kara.dart
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ Kara? parse(String raw) {
if (parsedSingerIndex == null) {
return singers;
}
singers?[parsedSingerIndex] = true;
singers?[parsedSingerIndex - 1] = true;
return singers;
});
continue;
Expand Down

0 comments on commit 2448d15

Please sign in to comment.