aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Dashboard.pm
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2016-01-27 10:34:55 +0000
committerMatthew Somerville <matthew@mysociety.org>2016-01-27 10:34:55 +0000
commitb8083a462aebf542f6f39c4201e1f09248b7e0e7 (patch)
treeab44be742664db2dd720efc03326db0acef22dde /perllib/FixMyStreet/App/Controller/Dashboard.pm
parentac59f93b2228f5ff77ca7b7aff6fc3be54d360cd (diff)
parent5adabce92647a6b9e12887af7959efcfef4877d4 (diff)
Merge branch '1146-social-login'
Conflicts: templates/web/base/report/new/fill_in_details_form.html templates/web/base/report/update-form.html
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Dashboard.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Dashboard.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Dashboard.pm b/perllib/FixMyStreet/App/Controller/Dashboard.pm
index faddaa89e..9189b28e5 100644
--- a/perllib/FixMyStreet/App/Controller/Dashboard.pm
+++ b/perllib/FixMyStreet/App/Controller/Dashboard.pm
@@ -4,6 +4,7 @@ use namespace::autoclean;
use DateTime;
use File::Slurp;
+use JSON::MaybeXS;
BEGIN { extends 'Catalyst::Controller'; }
@@ -40,7 +41,7 @@ sub example : Local : Args(0) {
my $data = File::Slurp::read_file(
FixMyStreet->path_to( 'data/dashboard.json' )->stringify
);
- my $j = JSON->new->utf8->decode($data);
+ my $j = decode_json($data);
if ( !$c->stash->{ward} && !$c->stash->{category} ) {
$c->stash->{problems} = $j->{counts_all};
} else {