From 044fc8c46afd232059bf64e3225c73f02c94bccc Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 30 Oct 2025 15:50:46 +0530 Subject: [PATCH] chore: revert in_reply_to_matches --- app/mailboxes/application_mailbox.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailboxes/application_mailbox.rb b/app/mailboxes/application_mailbox.rb index 07b689a2f..88e0954a0 100644 --- a/app/mailboxes/application_mailbox.rb +++ b/app/mailboxes/application_mailbox.rb @@ -37,7 +37,7 @@ class ApplicationMailbox < ActionMailbox::Base end def in_reply_to_matches?(in_reply_to) - Array.wrap(in_reply_to).any? { |id| id.match?(CONVERSATION_MESSAGE_ID_PATTERN) || id.match?(CONVERSATION_FALLBACK_ID_PATTERN) } + Array.wrap(in_reply_to).any? { |id| id.match?(CONVERSATION_MESSAGE_ID_PATTERN) } end def references_match?(references)