Skip to content

Commit

Permalink
fix missing amount in donations notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
ginesdt committed Oct 24, 2023
1 parent ed59916 commit 62b58b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streamtide/server/notifiers/notifiers.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
notification {:title "Donation received"
:body (gstring/format "You have received a donation from %s of a value of %s"
(if (string/blank? (:user/name sender)) (:donation/sender donation) (:user/name sender))
(shared-utils/format-price (:donation/amount)))}
(shared-utils/format-price (:donation/amount donation)))}
notification-entries (stdb/get-notification-categories {:user/address (:donation/receiver donation)
:notification/category (name :notification-category/donations)
:notification/enable true})]
Expand Down

0 comments on commit 62b58b3

Please sign in to comment.