Skip to content

Commit

Permalink
Fix that blocking was not working on link timeline (mastodon#32625)
Browse files Browse the repository at this point in the history
  • Loading branch information
tribela authored Oct 22, 2024
1 parent 16597fa commit 18659f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/models/link_feed.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ def get(limit, max_id = nil, since_id = nil, min_id = nil)

scope.merge!(discoverable)
scope.merge!(attached_to_preview_card)
scope.merge!(account_filters_scope) if account?
scope.merge!(language_scope) if account&.chosen_languages.present?

scope.to_a_paginated_by_id(limit, max_id: max_id, since_id: since_id, min_id: min_id)
end
Expand Down

0 comments on commit 18659f8

Please sign in to comment.