mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-23 07:19:28 -07:00
reddit regex will match without ending /
This commit is contained in:
parent
957b9e4348
commit
0491c3db38
1 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ async function verifyProof(url, fingerprint) {
|
||||||
// Reddit
|
// Reddit
|
||||||
if (/^https:\/\/(?:www\.)?reddit\.com\/user/.test(url)) {
|
if (/^https:\/\/(?:www\.)?reddit\.com\/user/.test(url)) {
|
||||||
output.type = "reddit";
|
output.type = "reddit";
|
||||||
match = url.match(/https:\/\/(?:www\.)?reddit\.com\/user\/(.*)\/comments\/(.*)\/(.*)\//);
|
match = url.match(/https:\/\/(?:www\.)?reddit\.com\/user\/(.*)\/comments\/(.*)\/([^/]*)/);
|
||||||
output.display = match[1];
|
output.display = match[1];
|
||||||
output.url = `https://www.reddit.com/user/${match[1]}`;
|
output.url = `https://www.reddit.com/user/${match[1]}`;
|
||||||
output.proofUrl = `https://www.reddit.com/user/${match[1]}/comments/${match[2]}.json`;
|
output.proofUrl = `https://www.reddit.com/user/${match[1]}/comments/${match[2]}.json`;
|
||||||
|
|
Loading…
Reference in a new issue