Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Edit WACCA Unicode Handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Suprnova committed Sep 28, 2020
1 parent 28dfe18 commit 35c3531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2844,7 +2844,7 @@ public string WaccaMatching(List<string> titles, List<string> titlesUni, List<st
{
if ((song.Title.Display.ToUpper() == titleUnicode.ToUpper()) || song.Title.Ruby.ToUpper() == titleUnicode.ToUpper())
{
matches.Add(titleUnicode + " (" + title + ") by " + song.Artist.Display + " (" + song.Artist.Ruby + ")");
matches.Add(title + " (" + titleUnicode + ") by " + song.Artist.Display + " (" + song.Artist.Ruby + ")");
}
}
}
Expand Down

0 comments on commit 35c3531

Please sign in to comment.