Add back a check that was removed for testing

This commit is contained in:
Michael Bucari-Tovo 2023-01-08 13:19:21 -07:00
parent fca946bf15
commit 36264c6c6e

View File

@ -366,6 +366,9 @@ namespace AppScaffolding
if (!Version.TryParse(latestVersionString, out var latestRelease))
return null;
// we're up to date
if (latestRelease <= BuildVersion)
return null;
// we have an update