FIX: fixed parsing of issue tags
This commit is contained in:
parent
aa470c84ce
commit
8a7ef2b33e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user