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 630fd10 commit 5145fd1Copy full SHA for 5145fd1
dev-proxy/OutdatedCommandHandler.cs
@@ -7,7 +7,10 @@ public static class OutdatedCommandHandler
7
public static async Task CheckVersion(ILogger logger)
8
{
9
var releaseInfo = await UpdateNotification.CheckForNewVersion(ProxyCommandHandler.Configuration.NewVersionNotification);
10
- logger.LogInformation(releaseInfo?.Version);
+ if (releaseInfo != null)
11
+ {
12
+ logger.LogInformation(releaseInfo.Version);
13
+ }
14
}
15
16
0 commit comments