Skip to content

Commit

Permalink
Merge pull request #36 from EltonChou/dev
Browse files Browse the repository at this point in the history
fix magic-link regex
  • Loading branch information
EltonChou authored Feb 9, 2023
2 parents 6808056 + e3976c9 commit 57605ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content_script/core/Harvester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {

const featureRegEx = Object.freeze({
id: /(?:status\/)(\d+)/,
screenName: /.com\/(\w+)\/(?:status\/)/,
photoModeUrl: /.com\/\w+\/status\/\d+\/(photo|video)\/\d+/
screenName: /(\w+)\/(?:status\/)/,
photoModeUrl: /\w+\/status\/\d+\/(photo|video)\/\d+/
})


Expand Down

0 comments on commit 57605ad

Please sign in to comment.