mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Use String.Equals
This commit is contained in:
parent
31453e5942
commit
9bf1645a40
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ namespace Flow.Launcher.Plugin.Program
|
|||
}
|
||||
if (_editing == null)
|
||||
{
|
||||
if (!ProgramSetting.ProgramSettingDisplayList.Any(x => x.UniqueIdentifier == Directory.Text))
|
||||
if (!ProgramSetting.ProgramSettingDisplayList.Any(x => x.UniqueIdentifier.Equals(Directory.Text, System.StringComparison.InvariantCultureIgnoreCase)))
|
||||
{
|
||||
var source = new ProgramSource(Directory.Text);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue