diff options
-rw-r--r-- | Bugzilla/Migrate/Flyspray.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm index 8116392a9..c41d9cb96 100644 --- a/Bugzilla/Migrate/Flyspray.pm +++ b/Bugzilla/Migrate/Flyspray.pm @@ -390,7 +390,7 @@ sub _read_bugs { added => $history->{resolution_name}, }; if ($self->translate_value('resolution', $history->{resolution_name} // "") eq "DUPLICATE") { - if ($closure_comment =~ m/FS#(\d+)/) { + if ($self->translate_value('resolution', $bug->{resolution} // "") eq "DUPLICATE" and $closure_comment =~ m/FS#(\d+)/) { $self->{dupes}->{$row->{task_id}} = int($1); } } |