Skip to content

Commit 7ce48dc

Browse files
committed
Unnecessary escape character: \?
1 parent 51d6cf7 commit 7ce48dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bypasses/lootlink.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default class LootLink extends BypassDefinition {
77
}
88

99
execute() {
10-
if (/[\?&]r=/.test(window.location.href.toString())) {
10+
if (/[?&]r=/.test(window.location.href.toString())) {
1111
const urlParams = new URLSearchParams(window.location.search)
1212
const r = urlParams.get('r')
1313
const finalURL = decodeURIComponent(escape(atob(r)));

0 commit comments

Comments
 (0)