This commit is contained in:
JustArchi
2016-10-01 00:26:02 +02:00
parent d9e241a1b4
commit 676409eb56

View File

@@ -341,7 +341,7 @@ namespace ArchiSteamFarm {
string request = SteamCommunityURL + "/mobileconf/details/" + confirmation.ID + "?l=english&p=" + deviceID + "&a=" + SteamID + "&k=" + WebUtility.UrlEncode(confirmationHash) + "&t=" + time + "&m=android&tag=conf";
Steam.ConfirmationDetails response = await WebBrowser.UrlGetToJsonResultRetry<Steam.ConfirmationDetails>(request).ConfigureAwait(false);
if (!response?.Success != true) {
if ((response == null) || !response.Success) {
return null;
}