Fix error when encountering invalid tag in updated object (#37635)
This commit is contained in:
parent
a20519d671
commit
7af5ba271d
@ -204,7 +204,11 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
|||||||
|
|
||||||
def update_tags!
|
def update_tags!
|
||||||
previous_tags = @status.tags.to_a
|
previous_tags = @status.tags.to_a
|
||||||
current_tags = @status.tags = Tag.find_or_create_by_names(@raw_tags)
|
current_tags = @status.tags = @raw_tags.flat_map do |tag|
|
||||||
|
Tag.find_or_create_by_names([tag])
|
||||||
|
rescue ActiveRecord::RecordInvalid
|
||||||
|
[]
|
||||||
|
end
|
||||||
|
|
||||||
return unless @status.distributable?
|
return unless @status.distributable?
|
||||||
|
|
||||||
|
|||||||
@ -258,6 +258,7 @@ RSpec.describe ActivityPub::ProcessStatusUpdateService do
|
|||||||
tag: [
|
tag: [
|
||||||
{ type: 'Hashtag', name: 'foo' },
|
{ type: 'Hashtag', name: 'foo' },
|
||||||
{ type: 'Hashtag', name: 'bar' },
|
{ type: 'Hashtag', name: 'bar' },
|
||||||
|
{ type: 'Hashtag', name: '#2024' },
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user