This commit is contained in:
Claire 2025-07-10 08:04:33 +00:00 committed by GitHub
commit 0e19ffcc80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View File

@ -304,6 +304,18 @@ class Account < ApplicationRecord
end
end
def fields=(fields)
old_fields = self[:fields] || []
old_fields = [] if old_fields.is_a?(Hash)
self[:fields] = fields.map do |field|
verified_at = old_fields.find { |item| item['value'] == field['value'] }&.fetch('verified_at', nil)
next field if verified_at.blank?
field.merge('verified_at' => verified_at)
end
end
def fields_attributes=(attributes)
fields = []
old_fields = self[:fields] || []

View File

@ -251,7 +251,7 @@ class ActivityPub::ProcessAccountService < BaseService
def property_values
return unless @json['attachment'].is_a?(Array)
as_array(@json['attachment']).select { |attachment| attachment['type'] == 'PropertyValue' }.map { |attachment| attachment.slice('name', 'value') }
as_array(@json['attachment']).filter_map { |attachment| attachment.slice('name', 'value') if attachment['type'] == 'PropertyValue' }
end
def mismatching_origin?(url)