From 559017aeccd08a17edc046dfed66c33e5f7d1831 Mon Sep 17 00:00:00 2001
From: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com>
Date: Mon, 22 May 2017 08:40:25 +0000
Subject: [PATCH] Bug 17047: Correct encoding issues

Modify the function manaRequest in order to set the right encoding format (UTF-8).

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
---
 Koha/SharedContent.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Koha/SharedContent.pm b/Koha/SharedContent.pm
index 9bd4d09..55d10c5 100644
--- a/Koha/SharedContent.pm
+++ b/Koha/SharedContent.pm
@@ -42,7 +42,7 @@ sub manaRequest {
 
     my $response  = $userAgent->request($mana_request);
 
-    eval { $result = from_json( $response->decoded_content ); };
+    eval { $result = from_json( $response->decoded_content, { utf8 => 1} ); };
     $result->{code} = $response->code;
     if ( $@ ){
         $result->{msg} = $response->{_msg};
-- 
2.1.4