Unlink follow import process from the one processing request.

Mistakes were made.
This commit is contained in:
eal 2017-12-23 16:40:43 +02:00
parent ad180ad6dd
commit 5c09d8d3f1
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
follow_import(conn, %{"list" => File.read!(listfile.path)})
end
def follow_import(%{assigns: %{user: user}} = conn, %{"list" => list}) do
Task.start_link(fn ->
Task.start(fn ->
String.split(list)
|> Enum.map(fn nick ->
with %User{} = follower <- User.get_cached_by_ap_id(user.ap_id),