summaryrefslogtreecommitdiff
path: root/lib/Multi
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-01-10 10:41:21 +0100
committerYorhel <git@yorhel.nl>2021-01-10 10:41:27 +0100
commit4eede471c44dfead6c92c34b288b0df0deebeaed (patch)
tree391d091188bc020239db6152c9bb86484c45fbd4 /lib/Multi
parent2238b36352fea1206e73d102c4ff1905c4c9ab70 (diff)
Replace references to old /v/all path
Old /v/<char> URLs are still supported, but the main listing is at /v.
Diffstat (limited to 'lib/Multi')
-rw-r--r--lib/Multi/IRC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Multi/IRC.pm b/lib/Multi/IRC.pm
index b14c78fc..98b2d1e9 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -431,7 +431,7 @@ vn => [ 0, 0, sub {
return if pg_expect $res, 1;
return $irc->send_msg(PRIVMSG => $chan, 'No visual novels found.') if !$res->nRows;
return $irc->send_msg(PRIVMSG => $chan,
- sprintf 'Too many results found, see %s/v/all?q=%s', config->{url}, uri_escape($q)) if $res->nRows > 5;
+ sprintf 'Too many results found, see %s/v?q=%s', config->{url}, uri_escape($q)) if $res->nRows > 5;
formatid([$res->rowsAsHashes()], $chan, 0);
};
}],