Unify user fetching.

This commit is contained in:
lain 2018-03-24 15:02:43 +01:00
parent e3a81fe58f
commit c7be7a9454
1 changed files with 2 additions and 1 deletions

View File

@ -328,7 +328,8 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
end
def get_external_profile(for_user, uri) do
with {:ok, %User{} = user} <- OStatus.find_or_make_user(uri) do
IO.inspect(uri)
with %User{} = user <- User.get_or_fetch_by_nickname(uri) do
spawn(fn ->
with url <- user.info["topic"],
{:ok, %{body: body}} <- @httpoison.get(url, [], follow_redirect: true, timeout: 10000, recv_timeout: 20000) do