Skip to content

Commit

Permalink
Merge pull request #832 from lottev1991/PinyinLyicsHelperFix
Browse files Browse the repository at this point in the history
[PinyinLyricsHelper] Convert pinyin to lower variant in PinyinLyricsHelper
  • Loading branch information
stakira authored Sep 13, 2023
2 parents 64e4cc2 + 8fbcc50 commit 8d3331e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau.Core/Util/LyricsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public string Convert(string text) {
public class PinyinLyricsHelper : ILyricsHelper {
public string Source => "汉->han";
public string Convert(string lyric) {
return TinyPinyin.PinyinHelper.GetPinyin(lyric);
return TinyPinyin.PinyinHelper.GetPinyin(lyric).ToLowerInvariant();
}
}

Expand Down

0 comments on commit 8d3331e

Please sign in to comment.