mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix possible NPE with game version primay key strings
This commit is contained in:
parent
59a0803a05
commit
d54f1e5a3f
@ -62,7 +62,7 @@ namespace Wabbajack.Lib.Downloaders
|
||||
internal AbsolutePath SourcePath => Game.MetaData().GameLocation().Combine(GameFile);
|
||||
|
||||
[JsonIgnore]
|
||||
public override object[] PrimaryKey { get => new object[] {Game, GameVersion, GameFile}; }
|
||||
public override object[] PrimaryKey { get => new object[] {Game, GameVersion ?? "0.0.0.0", GameFile}; }
|
||||
|
||||
public override bool IsWhitelisted(ServerWhitelist whitelist)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user