summaryrefslogtreecommitdiff
path: root/lib/VNDB
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2022-10-02 15:39:05 +0200
committerYorhel <git@yorhel.nl>2022-10-02 15:39:05 +0200
commit294a7d77ca2081d51a7e71964e267828aa55cd45 (patch)
tree10de2ee359540a7423a3108ea084fc7a52ce8f68 /lib/VNDB
parent766e2c9b90e1f25ee8b699d3f803b75138a567b4 (diff)
API: Add release links
Diffstat (limited to 'lib/VNDB')
-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 202afe3e..ffca7a7b 100644
--- a/lib/VNDB/ExtLinks.pm
+++ b/lib/VNDB/ExtLinks.pm
@@ -204,7 +204,7 @@ sub sql_extlinks {
my($type, $prefix) = @_;
$prefix ||= '';
my $l = $LINKS{$type} || die "DB entry type $type has no links";
- VNWeb::DB::sql_comma(map $prefix.$_, sort keys %$l)
+ join ',', map $prefix.$_, sort keys %$l
}