Merge remote-tracking branch 'parent/main' into upstream-20231206
This commit is contained in:
commit
0199608b87
61 changed files with 781 additions and 162 deletions
|
@ -193,9 +193,9 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
|||
|
||||
as_array(@json['tag']).each do |tag|
|
||||
if equals_or_includes?(tag['type'], 'Hashtag')
|
||||
@raw_tags << tag['name']
|
||||
@raw_tags << tag['name'] if tag['name'].present?
|
||||
elsif equals_or_includes?(tag['type'], 'Mention')
|
||||
@raw_mentions << tag['href']
|
||||
@raw_mentions << tag['href'] if tag['href'].present?
|
||||
elsif equals_or_includes?(tag['type'], 'Emoji')
|
||||
@raw_emojis << tag
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue