RSS feed items did not get a type assigned

This commit is contained in:
Mikael Nordfeldth 2015-01-15 21:13:21 +01:00
parent 8594a2ba16
commit 0193c7548f
1 changed files with 4 additions and 0 deletions

View File

@ -274,6 +274,10 @@ class ActivityObject
// @todo FIXME: rationalize with Activity::_fromRssItem()
private function _fromRssItem($item)
{
if (empty($this->type)) {
$this->type = ActivityObject::NOTE;
}
$this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, Activity::RSS);
$contentEl = ActivityUtils::child($item, ActivityUtils::CONTENT, Activity::CONTENTNS);