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 ad3f875 commit b49f6d6Copy full SHA for b49f6d6
Source/ModManager/Dependencies/VersionCheck.cs
@@ -49,7 +49,7 @@ public override List<FloatMenuOption> Resolvers
49
{
50
51
var options = Utilities.NewOptionsList;
52
- if ( !onlineManifest.downloadUri.NullOrEmpty() )
+ if ( onlineManifest != null && !onlineManifest.downloadUri.NullOrEmpty() )
53
options.Add( new FloatMenuOption( I18n.OpenDownloadUri( onlineManifest.downloadUri ),
54
() => SteamUtility.OpenUrl( onlineManifest.downloadUri ) ) );
55
else
0 commit comments