Skip to content

Commit

Permalink
fix: letsboost
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas authored Oct 15, 2023
1 parent 9d92511 commit 4360ce0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/bypasses/letsboost.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ export default class Letsboost extends BypassDefinition {

execute() {
this.helpers.insertInfoBox("If nothing happens in a few seconds, the bypass couldn't be executed. Please disable your ad blocker and refresh the page. Click OK to continue.");
const jsonDat = JSON.parse(window.stepDat);
const url = jsonDat[jsonDat.length-1]["url"];
this.helpers.safelyNavigate(url);
this.helpers.setInterval(() => {
const jsonDat = JSON.parse(window.stepDat);
const url = jsonDat[jsonDat.length-1]["url"];
this.helpers.safelyNavigate(url);
}, 1000);
}
}

Expand Down

0 comments on commit 4360ce0

Please sign in to comment.