mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix reverse condition
This commit is contained in:
parent
dd2d3c68c1
commit
6210454bbd
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ namespace Flow.Launcher.Infrastructure
|
|||
{
|
||||
if (_settings.ShouldUsePinyin)
|
||||
{
|
||||
if (_pinyinCache.ContainsKey(content))
|
||||
if (!_pinyinCache.ContainsKey(content))
|
||||
{
|
||||
if (WordsHelper.HasChinese(content))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue