Skip to content

Commit

Permalink
Fix katakana lyrics not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Aug 2, 2024
1 parent 14878a7 commit 3e0241f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private fun removeHiraganaReadings(term: SongLyrics.Term.Text): List<SongLyrics.

val converted_hira_section: String = hira_section.toHiragana()

val index: Int = reading.indexOf(converted_hira_section, reading_head)
val index: Int = reading.toHiragana().indexOf(converted_hira_section, reading_head)
if (index == -1) {
return
}
Expand Down

0 comments on commit 3e0241f

Please sign in to comment.