From f12b77c5503c99cc3188f23c02d457aa61afb536 Mon Sep 17 00:00:00 2001 From: Gabriel Jablonski Date: Sat, 25 Oct 2025 23:14:50 -0300 Subject: [PATCH] fix(instagram): include identifier in contact attributes for contact inbox creation (#125) --- app/models/channel/instagram.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/channel/instagram.rb b/app/models/channel/instagram.rb index 7e6444b30..20feb160c 100644 --- a/app/models/channel/instagram.rb +++ b/app/models/channel/instagram.rb @@ -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