🐛 Fix handle correctly slashes in emails

This commit is contained in:
Alejandro Alonso 2023-03-06 10:51:19 +01:00 committed by Alonso Torres
parent 91c12ca34f
commit 313df74202
2 changed files with 2 additions and 1 deletions

View file

@ -112,7 +112,7 @@
;; --- SPEC: email
(def email-re #"[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+")
(def email-re #"[a-zA-Z0-9_.+-\\\\]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+")
(defn parse-email
[s]