From 342d45ecc40020246b34722bbc4736cf8484cab4 Mon Sep 17 00:00:00 2001 From: Simon Koelsch Date: Wed, 8 Apr 2015 12:15:14 +0200 Subject: [PATCH] escape the "&" in the uri which is used as feed id --- src/statuses/views/atom.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/statuses/views/atom.clj b/src/statuses/views/atom.clj index d9aedbd..813b517 100644 --- a/src/statuses/views/atom.clj +++ b/src/statuses/views/atom.clj @@ -46,7 +46,7 @@ [items base-uri feed-uri] (into [:feed {:xmlns "http://www.w3.org/2005/Atom"} [:title "innoQ Status updates"] - [:id feed-uri] + [:id (escape-html feed-uri)] [:updated (as-rfc3339 (:time (first items)))] [:link {:rel "self" :type "application/atom+xml"