Add /api/v1/notifications/clear, non-existing link cards for statuses will
now return empty hash instead of throwing a 404 error. When following, merge into timeline will filter statuses
This commit is contained in:
parent
f2e08ff568
commit
f392030ab8
5 changed files with 21 additions and 11 deletions
|
@ -22,7 +22,8 @@ class Api::V1::StatusesController < ApiController
|
|||
end
|
||||
|
||||
def card
|
||||
@card = PreviewCard.find_by!(status: @status)
|
||||
@card = PreviewCard.find_by(status: @status)
|
||||
render_empty if @card.nil?
|
||||
end
|
||||
|
||||
def reblogged_by
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue