summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2017-02-20 18:10:29 +0100
committerYorhel <git@yorhel.nl>2017-02-20 18:10:29 +0100
commite2408d8312fecac6ee05b488ec0d478fd7a5f619 (patch)
tree854e7593b57b680129625d20dfcf381418690a40
parentbf73664a22c4c80546e6d4ca27d4419184696eb8 (diff)
Multi::IRC: Whitelist c64 in id detection
-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 7b0f4a96..ef36bace 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -283,7 +283,7 @@ sub handleid {
my($chan, $t, $id, $rev) = @_;
# Some common exceptions
- return if grep "$t$id$rev" eq $_, qw|v1 v2 v3 v4 u2 i3 i5 i7|;
+ return if grep "$t$id$rev" eq $_, qw|v1 v2 v3 v4 u2 i3 i5 i7 c64|;
return if throttle $O{throt_vndbid}, 'irc_vndbid';
return if throttle $O{throt_sameid}, "irc_sameid_$t$id$rev";