Exclude local-only toots from atom feeds

local
Thibaut Girka 6 years ago committed by ThibG
parent e4feef6b5c
commit 759750801e
  1. 2
      app/controllers/accounts_controller.rb

@ -32,7 +32,7 @@ class AccountsController < ApplicationController
format.atom do
@entries = @account.stream_entries.where(hidden: false).with_includes.paginate_by_max_id(PAGE_SIZE, params[:max_id], params[:since_id])
render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.feed(@account, @entries.reject { |entry| entry.status.nil? }))
render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.feed(@account, @entries.reject { |entry| entry.status.nil? || entry.status.local_only? }))
end
format.rss do

Loading…
Cancel
Save