Save incoming tags as lowercase.
[akkoma] / lib / pleroma / web / ostatus / ostatus.ex
index df80d137a35b4f9518eda27088a96b9566b247ff..7fd3a5eddd127bdcc82f09ce30828499518df3c0 100644 (file)
@@ -149,7 +149,7 @@ defmodule Pleroma.Web.OStatus do
 
   def get_tags(entry) do
     :xmerl_xpath.string('//category', entry)
-    |> Enum.map(fn (category) -> string_from_xpath("/category/@term", category) end)
+    |> Enum.map(fn (category) -> string_from_xpath("/category/@term", category) |> String.downcase end)
   end
 
   def maybe_update(doc, user) do