summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/WebService/Bug.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index 86c6ef5da..582a9ce91 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -874,7 +874,8 @@ sub _bug_to_hash {
$item{'qa_contact'} = $self->type('string', $qa_login);
}
if (filter_wants $params, 'see_also') {
- my @see_also = map { $self->type('string', $_) } @{ $bug->see_also };
+ my @see_also = map { $self->type('string', $_->name) }
+ @{ $bug->see_also };
$item{'see_also'} = \@see_also;
}