mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
Round 2 of nullable checks
This commit is contained in:
@@ -48,7 +48,7 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin {
|
||||
throw new ArgumentNullException(nameof(response.Content.Link));
|
||||
}
|
||||
|
||||
return Uri.EscapeUriString(response.Content.Link);
|
||||
return Uri.EscapeUriString(response.Content!.Link!);
|
||||
}
|
||||
|
||||
[SuppressMessage("ReSharper", "ClassCannotBeInstantiated")]
|
||||
|
||||
Reference in New Issue
Block a user