forked from GNUsocial/gnu-social
OStatus partial support for group subscriptions:
* detection of group feeds is currently a nasty hack based on presence of '/groups/' in URL -- should use some property on the feed? * listing for the remote group is kinda cruddy; needs to be named more cleanly * still need to establish per-author profiles (easier once we have the updated Atom code in) * group delivery probably not right yet * saving of group messages still triggering some weird behavior Added support for since_id and max_id on group timeline feeds as a free extra. Enjoy!
This commit is contained in:
@@ -203,7 +203,7 @@ class FeedMunger
|
||||
if (!$entry) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
if ($preview) {
|
||||
$notice = new FeedSubPreviewNotice($this->profile(true));
|
||||
$notice->id = -1;
|
||||
@@ -221,7 +221,7 @@ class FeedMunger
|
||||
$notice->uri = $link;
|
||||
$notice->url = $link;
|
||||
$notice->content = $this->noticeFromEntry($entry);
|
||||
$notice->rendered = common_render_content($notice->content, $notice);
|
||||
$notice->rendered = common_render_content($notice->content, $notice); // @fixme this is failing on group posts
|
||||
$notice->created = common_sql_date($entry->updated); // @fixme
|
||||
$notice->is_local = Notice::GATEWAY;
|
||||
$notice->source = 'feed';
|
||||
|
Reference in New Issue
Block a user