Fix reddit match regex

This commit is contained in:
Yarmo Mackenbach 2020-07-16 09:27:17 +02:00
parent 3007cbba4b
commit 3c04d2ccdd

View file

@ -436,7 +436,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.proofUrlFetch = `/server/verifyReddit.php?user=${match[1]}&comment=${match[2]}&fp=${fingerprint}`; output.proofUrlFetch = `/server/verifyReddit.php?user=${match[1]}&comment=${match[2]}&fp=${fingerprint}`;