From 6210454bbdaa3d51278eba8e1792ea8928392880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=98=E9=9F=AC=20=E5=BC=A0?= Date: Mon, 19 Oct 2020 20:37:40 +0800 Subject: [PATCH] Fix reverse condition --- Flow.Launcher.Infrastructure/Alphabet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/Alphabet.cs b/Flow.Launcher.Infrastructure/Alphabet.cs index 1ea075337..1d0ed93de 100644 --- a/Flow.Launcher.Infrastructure/Alphabet.cs +++ b/Flow.Launcher.Infrastructure/Alphabet.cs @@ -32,7 +32,7 @@ namespace Flow.Launcher.Infrastructure { if (_settings.ShouldUsePinyin) { - if (_pinyinCache.ContainsKey(content)) + if (!_pinyinCache.ContainsKey(content)) { if (WordsHelper.HasChinese(content)) {