This commit is contained in:
Vic 2022-10-18 20:07:43 +08:00
parent dcec3611de
commit 569f69a270

View file

@ -365,7 +365,7 @@ namespace Flow.Launcher.Plugin.Program.Views
private bool IsAllItemsUserAdded(List<ProgramSource> items)
{
return items.All(x => _settings.ProgramSources.Any(y => y == x));
return items.All(x => _settings.ProgramSources.Any(y => y.UniqueIdentifier == x.UniqueIdentifier));
}
}
}