Skip to content

Commit

Permalink
fix: Subtitle parse bug fix (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
kznr02 authored Nov 9, 2023
1 parent 9e528c9 commit 3617e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lex/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl<'a> Token<'a> {
"#PLAYER" => Self::Player(PlayerMode::from(c)?),
"#GENRE" => Self::Genre(c.next_line_remaining()),
"#TITLE" => Self::Title(c.next_line_remaining()),
"#SUBTITLE" => Self::Title(c.next_line_remaining()),
"#SUBTITLE" => Self::SubTitle(c.next_line_remaining()),
"#ARTIST" => Self::Artist(c.next_line_remaining()),
"#SUBARTIST" => Self::SubArtist(c.next_line_remaining()),
"#DIFFICULTY" => Self::Difficulty(
Expand Down

0 comments on commit 3617e87

Please sign in to comment.