Skip to content

Commit

Permalink
Regex hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopo-j committed May 24, 2021
1 parent aee4b27 commit 1e700e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/content.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const REGEX = /^https?:\/\/(.+?)\.webex\.com\/(?:recordingservice|webappng)\/sites\/([^\/]+)\/.*?([a-f0-9]{32})(.*)/g;
const REGEX = /^https?:\/\/(.+?)\.webex\.com\/(?:recordingservice|webappng)\/sites\/([^\/]+)\/.*?([a-f0-9]{32})[^\?]*(\?.*)?/g;
const MATCH = REGEX.exec(location.href);
const SUBDOMAIN = MATCH[1];
const SITENAME = MATCH[2];
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "Enables downloading of Webex meeting recordings",
"version": "1.2.1",
"version": "1.2.2",
"permissions": [
"storage",
"tabs",
Expand Down

0 comments on commit 1e700e9

Please sign in to comment.