Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #72 from HebaruSan/download-count-formatting
Browse files Browse the repository at this point in the history
Sorting and line breaks for the download counts
  • Loading branch information
techman83 committed Aug 29, 2018
2 parents 1070491 + 51dfe41 commit 051c7bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/App/KSP_CKAN/DownloadCounts.pm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ method _build__http {
}

method _build__json {
return JSON->new->allow_blessed(1)->convert_blessed(1);
return JSON->new
->indent(1)
->canonical(1)
->allow_blessed(1)
->convert_blessed(1);
}

method _build__NetKAN {
Expand Down

0 comments on commit 051c7bf

Please sign in to comment.