Browse Source

Unlink follow import process from the one processing request.

Mistakes were made.
tags/v0.9.9
eal 6 years ago
parent
commit
5c09d8d3f1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/twitter_api/controllers/util_controller.ex

+ 1
- 1
lib/pleroma/web/twitter_api/controllers/util_controller.ex 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),


Loading…
Cancel
Save