summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugUrl/GitHub.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/BugUrl/GitHub.pm')
-rw-r--r--Bugzilla/BugUrl/GitHub.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugUrl/GitHub.pm b/Bugzilla/BugUrl/GitHub.pm
index dbcaf655f..2c35bfb08 100644
--- a/Bugzilla/BugUrl/GitHub.pm
+++ b/Bugzilla/BugUrl/GitHub.pm
@@ -21,7 +21,7 @@ sub should_handle {
# GitHub issue URLs have only one form:
# https://github.com/USER_OR_TEAM_OR_ORGANIZATION_NAME/REPOSITORY_NAME/issues/111
- return ($uri->authority =~ /^github.com$/i
+ return (lc($uri->authority) eq 'github.com'
and $uri->path =~ m|^/[^/]+/[^/]+/issues/\d+$|) ? 1 : 0;
}