Skip to content

Commit

Permalink
escape the "&" in the uri which is used as feed id
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Koelsch committed Apr 8, 2015
1 parent 53d3186 commit 342d45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/statuses/views/atom.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 342d45e

Please sign in to comment.