Resolve CA1034

This commit is contained in:
JustArchi
2021-05-06 20:16:06 +02:00
parent 57bf294553
commit b6772b9b1e
72 changed files with 2564 additions and 1751 deletions

View File

@@ -22,6 +22,7 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
using ArchiSteamFarm.Web;
using Newtonsoft.Json;
namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin {
@@ -38,7 +39,7 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin {
const string request = URL + "/meow";
WebBrowser.ObjectResponse<MeowResponse>? response = await webBrowser.UrlGetToJsonObject<MeowResponse>(request).ConfigureAwait(false);
ObjectResponse<MeowResponse>? response = await webBrowser.UrlGetToJsonObject<MeowResponse>(request).ConfigureAwait(false);
if (response == null) {
return null;