diff options
author | dklawren <dklawren@users.noreply.github.com> | 2018-08-08 20:33:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 20:33:56 +0200 |
commit | a06f8e976a6bcca80f38a1575eb786608c3878d7 (patch) | |
tree | 1d675aecca6cd052c87357c4f025f1dc090fff8f | |
parent | 9bd9f9038b3b469f07d1567156b7feb5bda2af18 (diff) | |
download | bugzilla-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
-rw-r--r-- | extensions/PhabBugz/lib/Feed.pm | 2 |
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. |