Skip to content

Commit

Permalink
fix: letsboost
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas authored Oct 14, 2023
1 parent c5023dd commit c586073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bypasses/letsboost.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default class Letsboost extends BypassDefinition {

execute() {
try {
const jsonDat = window.JSON.parse(window.stepDat);
const jsonDat = JSON.parse(window.stepDat);
const url = jsonDat[jsonDat.length-1]["url"];
this.helpers.safelyNavigate(url);
} catch (error) {
Expand Down

0 comments on commit c586073

Please sign in to comment.