summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authordklawren <dklawren@users.noreply.github.com>2018-08-08 20:33:56 +0200
committerGitHub <noreply@github.com>2018-08-08 20:33:56 +0200
commita06f8e976a6bcca80f38a1575eb786608c3878d7 (patch)
tree1d675aecca6cd052c87357c4f025f1dc090fff8f /extensions
parent9bd9f9038b3b469f07d1567156b7feb5bda2af18 (diff)
downloadbugzilla-a06f8e976a6bcca80f38a1575eb786608c3878d7.tar.gz
bugzilla-a06f8e976a6bcca80f38a1575eb786608c3878d7.tar.xz
Bug 1481893 - After recent push of bug 1478897 bug/revision syncing has been broken due to coding error
Diffstat (limited to 'extensions')
-rw-r--r--extensions/PhabBugz/lib/Feed.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/PhabBugz/lib/Feed.pm b/extensions/PhabBugz/lib/Feed.pm
index 7a5e8d6d6..8e7290988 100644
--- a/extensions/PhabBugz/lib/Feed.pm
+++ b/extensions/PhabBugz/lib/Feed.pm
@@ -413,7 +413,7 @@ sub process_revision_change {
else {
# Here we create a new custom policy containing the project
# groups that are mapped to bugzilla groups.
- my $set_project_names = [ map { "bmo-" . $_ } @{ $bug->groups_in } ];
+ my $set_project_names = [ map { "bmo-" . $_->name } @{ $bug->groups_in } ];
# If current policy projects matches what we want to set, then
# we leave the current policy alone.