Skip to content

Commit 86307aa

Browse files
Update Source/NETworkManager.Models/ApplicationManager.cs
Co-authored-by: Copilot <[email protected]>
1 parent ee20c48 commit 86307aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/NETworkManager.Models/ApplicationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static IEnumerable<ApplicationName> GetNames()
2727
/// <returns>IEnumerable with <see cref="ApplicationInfo" />.</returns>
2828
public static IEnumerable<ApplicationInfo> GetDefaultList()
2929
{
30-
return [.. GetNames().Where(x => x != ApplicationName.None || x != ApplicationName.AWSSessionManager).Select(name => new ApplicationInfo(name, true, name == ApplicationName.Dashboard))];
30+
return [.. GetNames().Where(x => x != ApplicationName.None && x != ApplicationName.AWSSessionManager).Select(name => new ApplicationInfo(name, true, name == ApplicationName.Dashboard))];
3131
}
3232

3333
/// <summary>

0 commit comments

Comments
 (0)