Skip to content

Commit 1ee89a1

Browse files
committed
Small fix
1 parent ddd9bc8 commit 1ee89a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private void RemoveExcludedAppsFromUpgradableList()
6767
{
6868
var excludedApps = settingsPage.ExcludedApps;
6969

70-
if (excludedApps == null || !excludedApps.Any())
70+
if (upgradableApps == null || excludedApps == null || !excludedApps.Any())
7171
{
7272
return;
7373
}

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Name": "AppUpgrader",
55
"Description": "Allows you to keep your applications up using winget",
66
"Author": "Exarilo",
7-
"Version": "1.1.3",
7+
"Version": "1.1.4",
88
"Language": "csharp",
99
"Website": "https://github.com/Exarilo/Flow.Launcher.Plugin.AppUpgrader",
1010
"IcoPath": "Images\\app.png",

0 commit comments

Comments
 (0)