diff options
author | Roger Braun <roger@rogerbraun.net> | 2018-01-29 17:44:35 +0100 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2018-01-29 17:44:35 +0100 |
commit | 64e51c2cfa3e6da0f4998bab5358646cba8f29fa (patch) | |
tree | 2c189eb592d5ed653a4281d7cca9651236e3e5e1 /lib | |
parent | e97864bfcbda963823a00b38af763a7c5385dafc (diff) | |
download | pleroma-64e51c2cfa3e6da0f4998bab5358646cba8f29fa.tar.gz |
Fix incoming Pleroma CWs. Closes #96.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/ostatus/ostatus.ex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/pleroma/web/ostatus/ostatus.ex b/lib/pleroma/web/ostatus/ostatus.ex index e65cab3ed..c35ba42be 100644 --- a/lib/pleroma/web/ostatus/ostatus.ex +++ b/lib/pleroma/web/ostatus/ostatus.ex @@ -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 |