remove utf8-deocde, should be done by the lib

This commit is contained in:
Bernhard Posselt 2014-10-22 11:56:38 +02:00
Родитель c102123dc9
Коммит 034e13ef65
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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();