summaryrefslogtreecommitdiffstats
path: root/fetcher
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-22 11:56:38 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-22 11:56:38 +0200
commit034e13ef65f4cc91edd29952e48d09930e8cb332 (patch)
treef56ba3711bd19e18da06c669490c67ee0c889d90 /fetcher
parentc102123dc902b855842d3e9942b4629abba83ebb (diff)
remove utf8-deocde, should be done by the lib
Diffstat (limited to 'fetcher')
-rw-r--r--fetcher/feedfetcher.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetcher/feedfetcher.php b/fetcher/feedfetcher.php
index aa6a465b3..7cd439669 100644
--- a/fetcher/feedfetcher.php
+++ b/fetcher/feedfetcher.php
@@ -129,7 +129,7 @@ class FeedFetcher implements IFeedFetcher {
$item->setGuid($guid);
// purification is done in the service layer
- $item->setBody(utf8_decode($parsedItem->getContent()));
+ $item->setBody($parsedItem->getContent());
// pubdate is not required. if not given use the current date
$date = $parsedItem->getDate();