Try to fetch from html again if fetching from atom gives no results.

This commit is contained in:
Roger Braun 2017-09-08 09:08:31 +02:00
parent a441ee7d21
commit 95aa6a3c65
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ defmodule Pleroma.Web.OStatus do
end
def fetch_activity_from_url(url) do
with {:ok, activities} <- fetch_activity_from_atom_url(url) do
with {:ok, activities} when length(activities) > 0 <- fetch_activity_from_atom_url(url) do
{:ok, activities}
else
_e -> with {:ok, activities} <- fetch_activity_from_html_url(url) do