aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bugzilla.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb
index 1b05a47..474c7eb 100644
--- a/bugzilla.rb
+++ b/bugzilla.rb
@@ -857,7 +857,7 @@ class BugzillaPlugin < Plugin
begin
@registry["channel_defaults"].each do |chanrexp, defaults|
if chanrexp =~ /^\/.*\/$/
- chanrexp = Regexp.new(chanrexp[1..-2])
+ chanrexp = Regexp.new(chanrexp[1..-2], Regexp::IGNORECASE)
@bot.server.channels.each do |chan|
_channel_defaults_reload_set(chan.to_s, defaults) if chan.to_s =~ chanrexp
end