This commit is contained in:
JustArchi
2020-11-28 19:25:17 +01:00
parent fe5d3b4626
commit bf89a162e2
2 changed files with 2 additions and 1 deletions

View File

@@ -1124,7 +1124,7 @@ namespace ArchiSteamFarm {
throw new ArgumentNullException(nameof(basicResponse));
}
Content = content;
Content = content ?? throw new ArgumentNullException(nameof(content));
}
public ObjectResponse(BasicResponse basicResponse) : base(basicResponse) {