Browse Source

Use empty context id if we get none

Thanks mastodon.
tags/v0.9.9
Roger Braun 7 years ago
parent
commit
8ae13d94dc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/ostatus/ostatus.ex

+ 1
- 1
lib/pleroma/web/ostatus/ostatus.ex View File

@@ -45,7 +45,7 @@ defmodule Pleroma.Web.OStatus do
uri = string_from_xpath("/entry/author/uri[1]", entry) || string_from_xpath("/feed/author/uri[1]", doc)
{:ok, actor} = find_or_make_user(uri)

context = string_from_xpath("/entry/ostatus:conversation[1]", entry) |> String.trim
context = (string_from_xpath("/entry/ostatus:conversation[1]", entry) || "") |> String.trim
context = if String.length(context) > 0 do
context
else


Loading…
Cancel
Save