From 5cc9eb3df79e79fee77f1479a85a4886ab6295d7 Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Thu, 22 Feb 2024 22:36:46 +0000 Subject: [PATCH] refactor: move lib/postal/reply_separator to app/lib/reply_separator --- {lib/postal => app/lib}/reply_separator.rb | 0 app/senders/http_sender.rb | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {lib/postal => app/lib}/reply_separator.rb (100%) diff --git a/lib/postal/reply_separator.rb b/app/lib/reply_separator.rb similarity index 100% rename from lib/postal/reply_separator.rb rename to app/lib/reply_separator.rb diff --git a/app/senders/http_sender.rb b/app/senders/http_sender.rb index af931e9..4da8c7f 100644 --- a/app/senders/http_sender.rb +++ b/app/senders/http_sender.rb @@ -91,7 +91,7 @@ class HTTPSender < BaseSender } if @endpoint.strip_replies - hash[:plain_body], hash[:replies_from_plain_body] = Postal::ReplySeparator.separate(message.plain_body) + hash[:plain_body], hash[:replies_from_plain_body] = ReplySeparator.separate(message.plain_body) else hash[:plain_body] = message.plain_body end