Skip to content

Commit 41a4da2

Browse files
committed
fix: custom emojis should override standard emojis
Instead of the other way around
1 parent 6cdb5d4 commit 41a4da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clojurians_log/slack_messages.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
([text]
5454
(text->emoji text {}))
5555
([text emoji-map]
56-
(let [emoji-map (merge emoji-map @standard-emoji-map)]
56+
(let [emoji-map (merge @standard-emoji-map emoji-map)]
5757
(loop [shortcode text]
5858
(when-let [link (emoji-map shortcode)]
5959
(cond

0 commit comments

Comments
 (0)