Skip to content

Commit 69cf19e

Browse files
authored
Merge pull request #630 from Flow-Launcher/optBardWardCompatibility
fix actionkeywords inflate when actionkeyword count mismatch in explorer plugin
2 parents 1b8c154 + 6a1bb17 commit 69cf19e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/UserSettings/PluginSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void UpdatePluginSettings(List<PluginMetadata> metadatas)
1818

1919
// TODO: Remove. This is backwards compatibility for 1.8.0 release.
2020
// Introduced two new action keywords in Explorer, so need to update plugin setting in the UserData folder.
21-
if (metadata.ID == "572be03c74c642baae319fc283e561a8" && metadata.ActionKeywords.Count != settings.ActionKeywords.Count)
21+
if (metadata.ID == "572be03c74c642baae319fc283e561a8" && metadata.ActionKeywords.Count > settings.ActionKeywords.Count)
2222
{
2323
settings.ActionKeywords.Add(Query.GlobalPluginWildcardSign); // for index search
2424
settings.ActionKeywords.Add(Query.GlobalPluginWildcardSign); // for path search

0 commit comments

Comments
 (0)