From ec6e40e8bc9f818b0791d4e296b3a194ba7d9442 Mon Sep 17 00:00:00 2001 From: erri120 Date: Fri, 11 Oct 2019 13:23:35 +0200 Subject: [PATCH] Added null check --- Wabbajack/AppState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wabbajack/AppState.cs b/Wabbajack/AppState.cs index 1b91e2a7..a669cbd2 100644 --- a/Wabbajack/AppState.cs +++ b/Wabbajack/AppState.cs @@ -369,7 +369,7 @@ namespace Wabbajack SplashScreenAuthorName = _modList.Author; _nexusSiteURL = _modList.Website; SplashScreenSummary = _modList.Description; - if (_modList.Image != null) + if (!string.IsNullOrEmpty(_modList.Image) && _modList.Image.Length == 36) { //TODO: if(_modList.Image != null) SplashScreenImage = _modList.Image; SplashScreenImage = _wabbajackLogo;