FIX: fixed parsing of issue tags

This commit is contained in:
Dominik Meyer 2018-09-15 22:36:46 +02:00
parent aa470c84ce
commit 8a7ef2b33e
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 5 additions and 0 deletions

View File

@ -355,6 +355,11 @@ sub parseIssue
$issue->author_email($2);
}
if (defined($tags))
{
my @tag_array=split /\n/,$tags;
$issue->tags(\@tag_array);
}
return $issue;
}