From f3805e3b70a02b65e98038aa2a2f672845570e0b Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 31 Oct 2025 10:56:33 +0100 Subject: [PATCH] :bug: Fix regression on sending quote notification email --- backend/src/app/rpc/quotes.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/app/rpc/quotes.clj b/backend/src/app/rpc/quotes.clj index fefcf5952d..d5903744b3 100644 --- a/backend/src/app/rpc/quotes.clj +++ b/backend/src/app/rpc/quotes.clj @@ -102,8 +102,7 @@ ::wrk/label "quotes-notification" ::wrk/params {:to (vec admins) :subject subject - :body [{:type "text/plain" - :content content}]}})))) + :body content}})))) (defn- generic-check! [{:keys [::db/conn ::incr ::quote-sql ::count-sql ::default ::target] :or {incr 1} :as params}]