mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Added null check
This commit is contained in:
parent
0882e25cb8
commit
ec6e40e8bc
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user