Skip to content
Snippets Groups Projects
Commit acd71968 authored by Síle Ekaterin Liszka's avatar Síle Ekaterin Liszka
Browse files

Chessa::Bug::Adelie: fix IDs

parent 4d72c3e8
No related branches found
No related tags found
No related merge requests found
......@@ -150,11 +150,11 @@ sub issue {
my %d = (
author => $json->{author}{name} . ' (@' . $json->{author}{username} . ')',
title => $json->{title},
id => $json->{id},
id => $json->{iid},
url => $json->{web_url},
state => $json->{state},
);
my $str = $self->{msg}($project, $d{id}) . $d{title} . ' (' .
my $str = $self->{msg}($project, $d{id}) . ' ' . $d{title} . ' (' .
$self->{msg}('Status', $d{state}) . ' ' .
$self->{msg}('Author', $d{author}) . ") - $d{url}";
......@@ -171,7 +171,7 @@ sub mr {
my %d = (
author => $json->{author}{name} . ' (@' . $json->{author}{username} . ')',
title => $json->{title},
id => $json->{id},
id => $json->{iid},
url => $json->{web_url},
state => $json->{state},
target => $json->{target_branch},
......@@ -232,7 +232,7 @@ sub snippet {
my %d = (
author => $json->{author}{name} . ' (@' . $json->{author}{username} . ')',
title => $json->{title},
id => $json->{id},
id => $json->{iid},
url => $json->{web_url},
);
$project = 'Snippet' unless defined($project);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment