Skip to content

Commit

Permalink
Fixes Login Command for Failed Proxy Connection Timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Step7750 committed Apr 20, 2023
1 parent 26a0e21 commit 0b4e9f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Bot extends EventEmitter {
// Yes, checking for string errors sucks, but we have no other attributes to check
// this error against.
if (err.toString().includes('Proxy connection timed out')) {
this.steamClient.relog();
this.logIn();
}
});

Expand Down

1 comment on commit 0b4e9f6

@SPr3D
Copy link

@SPr3D SPr3D commented on 0b4e9f6 Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello! I am sending requests through the python to CSGOFloatAPI, but it it gives me an error:
<Response [400]>
{"error":"Bots are temporarily not allowed on CSGOFloat Inspect API due to new rate limits imposed by Valve","code":16,"status":400}
Can I solve this problem somehow?

Please sign in to comment.