We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3bae93 commit b92181fCopy full SHA for b92181f
Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs
@@ -202,11 +202,7 @@ private PackageVersion GetPackageVersionFromManifest(XmlNode xmlRoot)
202
public static Application[] All(Settings settings)
203
{
204
var support = SupportUWP();
205
- if (!support && settings.EnableUWP)
206
- {
207
- settings.EnableUWP = false;
208
- }
209
- if (settings.EnableUWP)
+ if (support && settings.EnableUWP)
210
211
var applications = CurrentUserPackages().AsParallel().SelectMany(p =>
212
0 commit comments