Skip to content

Commit 6210454

Browse files
committed
Fix reverse condition
1 parent dd2d3c6 commit 6210454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Alphabet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public string Translate(string content)
3232
{
3333
if (_settings.ShouldUsePinyin)
3434
{
35-
if (_pinyinCache.ContainsKey(content))
35+
if (!_pinyinCache.ContainsKey(content))
3636
{
3737
if (WordsHelper.HasChinese(content))
3838
{

0 commit comments

Comments
 (0)