Error when marking a community notification as read in the activity center #19388 (#19390)

This commit is contained in:
Ibrahem Khalil 2024-03-25 21:36:24 +02:00 committed by GitHub
parent a405de62e6
commit 44846c80c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,10 @@
(defn <-color
[value]
(if (string/starts-with? value "#") value (keyword value)))
(if (and (some? value)
(string/starts-with? value "#"))
value
(keyword value)))
(defn <-rpc
[chat]