diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Roles/ContactExtra.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Roles/ContactExtra.pm b/perllib/FixMyStreet/Roles/ContactExtra.pm index e78d9b53f..73b1d3e6a 100644 --- a/perllib/FixMyStreet/Roles/ContactExtra.pm +++ b/perllib/FixMyStreet/Roles/ContactExtra.pm @@ -46,7 +46,7 @@ sub by_categories { || (grep { $_->contact_id == $contact->get_column('id') } $_->$join_table) } @results; @ts = $rs->map_extras(@ts); - $extras{$contact->category} = encode_json(\@ts); + $extras{$contact->category} = JSON::XS->new->encode(\@ts); } return \%extras; |