Fix incoming Pleroma CWs. Closes #96.

This commit is contained in:
Roger Braun 2018-01-29 17:44:35 +01:00
parent e97864bfcb
commit 64e51c2cfa
1 changed files with 1 additions and 2 deletions

View File

@ -163,8 +163,7 @@ defmodule Pleroma.Web.OStatus do
Get the cw that mastodon uses.
"""
def get_cw(entry) do
with scope when not is_nil(scope) <- string_from_xpath("//mastodon:scope", entry),
cw when not is_nil(cw) <- string_from_xpath("/*/summary", entry) do
with cw when not is_nil(cw) <- string_from_xpath("/*/summary", entry) do
cw
else _e -> nil
end