branch: externals/rt-liberation
commit 6e9cceb8b42896761ac3b882ee118561204b54f7
Author: Yoni Rabkin <[email protected]>
Commit: Yoni Rabkin <[email protected]>

    * rt-liberation-rest.el: UTF-8 decoding.
    
    Patch by Martin Jesper Low Madsen <[email protected]>.
---
 rt-liberation-rest.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rt-liberation-rest.el b/rt-liberation-rest.el
index 583aec3..b46867c 100644
--- a/rt-liberation-rest.el
+++ b/rt-liberation-rest.el
@@ -123,9 +123,11 @@
           (url-retrieve-synchronously url))
          str)
       (setq str
+           (decode-coding-string
            (with-current-buffer response
              (buffer-substring-no-properties (point-min)
-                                             (point-max))))
+                                             (point-max)))
+           'utf-8))
       
       (rt-liber-rest-write-debug
        (format "outgoing rest call -->\n%s\n<-- incoming\n%s\n" url str))

Reply via email to