Add return statement....

This commit is contained in:
弘韬 张 2020-10-18 21:31:08 +08:00 committed by 张弘韬
parent b07490271d
commit 272f411f81

View file

@ -102,6 +102,9 @@ namespace Flow.Launcher.Infrastructure
}
}
if (acronymMatchData.Count == query.Length && acronymScore >= 60)
return new MatchResult(true, UserSettingSearchPrecision, acronymMatchData, acronymScore);
var fullStringToCompareWithoutCase = opt.IgnoreCase ? stringToCompare.ToLower() : stringToCompare;