summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugUrl/Launchpad.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/BugUrl/Launchpad.pm')
-rw-r--r--Bugzilla/BugUrl/Launchpad.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugUrl/Launchpad.pm b/Bugzilla/BugUrl/Launchpad.pm
index 43c5c57d9..3409cbe19 100644
--- a/Bugzilla/BugUrl/Launchpad.pm
+++ b/Bugzilla/BugUrl/Launchpad.pm
@@ -23,7 +23,7 @@ sub should_handle {
# https://bugs.launchpad.net/ubuntu/+bug/1234
# https://launchpad.net/bugs/1234
# All variations end with either "/bugs/1234" or "/+bug/1234"
- return ($uri->authority =~ /launchpad.net$/
+ return ($uri->authority =~ /launchpad\.net$/
and $uri->path =~ m|bugs?/\d+$|) ? 1 : 0;
}