diff --git a/plugins/fmylife.py b/plugins/fmylife.py index 68d1d89..27ca639 100755 --- a/plugins/fmylife.py +++ b/plugins/fmylife.py @@ -19,6 +19,7 @@ def refresh_cache(): for e in soup.findAll('div', {'class': 'post article'}): id = int(e['id']) text = ''.join(e.find('p').findAll(text=True)) + text = http.unescape(text) fml_cache[id] = text # do an initial refresh of the cache