fix(instagram): include identifier in contact attributes for contact inbox creation (#125)

This commit is contained in:
Gabriel Jablonski 2025-10-25 23:14:50 -03:00 committed by GitHub
parent 8ff5834ee8
commit f12b77c550
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ class Channel::Instagram < ApplicationRecord
@contact_inbox = ::ContactInboxWithContactBuilder.new({
source_id: instagram_id,
inbox: inbox,
contact_attributes: { name: name }
contact_attributes: { name: name, identifier: instagram_id }
}).perform
end