Add return statement....

This commit is contained in:
弘韬 张 2020-10-18 21:31:08 +08:00
parent 34dc72950b
commit 468f8899b9

View file

@ -96,6 +96,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;