Skip to content

Commit

Permalink
fix: letsboost
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas committed Oct 14, 2023
1 parent 4935fb7 commit b2de926
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() {
const jsonDat = window.JSON.parse(stepDat);
this.helpers.safelyNavigate(jsonDat[jsonDat.length-1]["url"]);
this.helpers.insertInfoBox("If nothing happens disable your ad blocker and refresh the page.");
const jsonDat = JSON.parse(window.stepDat);
const url = jsonDat[jsonDat.length-1]["url"];
this.helpers.safelyNavigate(url);
}
}

export const matches = ['letsboost.net']
export const matches = ['letsboost.net'];

0 comments on commit b2de926

Please sign in to comment.