Skip to content

Instantly share code, notes, and snippets.

.
./.git
./.git/config
./.git/description
./.git/HEAD
./.git/hooks
./.git/hooks/applypatch-msg.sample
./.git/hooks/commit-msg.sample
./.git/hooks/post-commit.sample
./.git/hooks/post-receive.sample
--- a/lib/App/SD/Replica/hm/PullEncoder.pm
+++ b/lib/App/SD/Replica/hm/PullEncoder.pm
@@ -224,7 +224,10 @@ sub translate_ticket_state {
my $props = shift;
- return $props, {%$props};
+ my $translated = {%$props};
+ $translated->{status} = (delete $translated->{complete}) ? 'closed' : 'open';
+