summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-08-26 20:46:55 +0200
committerYorhel <git@yorhel.nl>2021-08-26 20:46:55 +0200
commitf4c537d9f790daa41247cfee975fb90a949d2819 (patch)
tree7c5e5b613195a3f431d87b0af0fd4abc2393df5d
parent33d86f75d9cb169e61316e5ca8fefd10e67b1163 (diff)
ExtLinks: Fix JAST USA regex to allow underscores
-rw-r--r--lib/VNDB/ExtLinks.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/ExtLinks.pm b/lib/VNDB/ExtLinks.pm
index ce465407..ddc1cf5d 100644
--- a/lib/VNDB/ExtLinks.pm
+++ b/lib/VNDB/ExtLinks.pm
@@ -111,7 +111,7 @@ our %LINKS = (
, regex => qr{(?:www\.)?(?:jlist|jbox)\.com/(?:.+/)?([a-z0-9-]*[0-9][a-z0-9-]*)} },
l_jastusa => { label => 'JAST USA'
, fmt => 'https://jastusa.com/games/%s'
- , regex => qr{(?:www\.)?jastusa\.com/games/([a-z0-9-]+)} },
+ , regex => qr{(?:www\.)?jastusa\.com/games/([a-z0-9_-]+)} },
l_fakku => { label => 'Fakku'
, fmt => 'https://www.fakku.net/games/%s'
, regex => qr{(?:www\.)?fakku\.(?:net|com)/games/([^/]+)(?:[/\?].*)?} },