summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Migrate/Flyspray.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm
index cba1143f7..6f499bc4a 100644
--- a/Bugzilla/Migrate/Flyspray.pm
+++ b/Bugzilla/Migrate/Flyspray.pm
@@ -421,7 +421,10 @@ sub _read_bugs {
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);
}
}