Skip to content

Commit

Permalink
builded
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Jun 30, 2024
1 parent 1da8f02 commit f5ce75b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/vot-cloudflare-min.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vot-cloudflare.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3766,7 +3766,7 @@ function getModuleData() {
}

function getLectureId() {
return window.location.pathname.match(/learn\/lecture\/([^/]+)/)?.[1];
return /learn\/lecture\/([^/]+)/.exec(window.location.pathname)?.[1];
}

function udemyUtils_getPlayer() {
Expand Down
2 changes: 1 addition & 1 deletion dist/vot-min.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3665,7 +3665,7 @@ function getModuleData() {
}

function getLectureId() {
return window.location.pathname.match(/learn\/lecture\/([^/]+)/)?.[1];
return /learn\/lecture\/([^/]+)/.exec(window.location.pathname)?.[1];
}

function udemyUtils_getPlayer() {
Expand Down

0 comments on commit f5ce75b

Please sign in to comment.