steamutils 1.3.89 → 1.3.91
Sign up to get free protection for your applications and to get access to all the features.
- package/SteamClient.js +2418 -2437
- package/index.js +6 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -5923,10 +5923,15 @@ export default class SteamUser {
|
|
5923
5923
|
Referer: "https://store.steampowered.com/twofactor/manage",
|
5924
5924
|
},
|
5925
5925
|
});
|
5926
|
+
|
5927
|
+
if (!result) {
|
5928
|
+
return;
|
5929
|
+
}
|
5930
|
+
|
5926
5931
|
if (result instanceof ResponseError) {
|
5927
5932
|
return result;
|
5928
5933
|
}
|
5929
|
-
console.log(result
|
5934
|
+
console.log(result?.data);
|
5930
5935
|
const example = {};
|
5931
5936
|
}
|
5932
5937
|
|