Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 68abe6ff authored by Adam Tauber's avatar Adam Tauber Committed by GitHub
Browse files

Merge pull request #1800 from Yetangitu/flickr_noapi_double_encode

[engines|fix] flickr_noapi: Fix double-encode error (fixes #1799)
parents 22d05b3e db9d7d47
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -118,9 +118,9 @@ def response(resp):
            'template': 'images.html'
        }
        try:
            result['author'] = author.encode('utf-8')
            result['title'] = title.encode('utf-8')
            result['content'] = content.encode('utf-8')
            result['author'] = author
            result['title'] = title
            result['content'] = content
        except:
            result['author'] = ''
            result['title'] = ''