You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Patcher.java, on line 80
StringBuilder newTarget = new StringBuilder("{console.log("undetected chromedriver 1337!"}");
There is a missing closing parantheses after console.log message.
It should be:
StringBuilder newTarget = new StringBuilder("{console.log("undetected chromedriver 1337!")}");
The text was updated successfully, but these errors were encountered:
In Patcher.java, on line 80
StringBuilder newTarget = new StringBuilder("{console.log("undetected chromedriver 1337!"}");
There is a missing closing parantheses after console.log message.
It should be:
StringBuilder newTarget = new StringBuilder("{console.log("undetected chromedriver 1337!")}");
The text was updated successfully, but these errors were encountered: