aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/twitter_api/controllers
diff options
context:
space:
mode:
authorRachel H <lastexyle@gmail.com>2018-06-06 21:26:44 -0700
committerRachel H <lastexyle@gmail.com>2018-06-07 00:39:24 -0700
commit1525a0404bfe1ff966a500703bef9aca2f678834 (patch)
tree552019223185881f09f4ceee34ba414fef2f15dc /lib/pleroma/web/twitter_api/controllers
parent0a0c6bf3945d6da98d3e5a08205a9b4f24adb67f (diff)
downloadpleroma-1525a0404bfe1ff966a500703bef9aca2f678834.tar.gz
Fix follow errors
Diffstat (limited to 'lib/pleroma/web/twitter_api/controllers')
-rw-r--r--lib/pleroma/web/twitter_api/controllers/util_controller.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/controllers/util_controller.ex b/lib/pleroma/web/twitter_api/controllers/util_controller.ex
index cc5146566..7a0c37ce9 100644
--- a/lib/pleroma/web/twitter_api/controllers/util_controller.ex
+++ b/lib/pleroma/web/twitter_api/controllers/util_controller.ex
@@ -189,7 +189,7 @@ defmodule Pleroma.Web.TwitterAPI.UtilController do
{:ok, follower} <- User.follow(follower, followed) do
ActivityPub.follow(follower, followed)
else
- _e -> Logger.debug("follow_import: following #{account} failed")
+ err -> Logger.debug("follow_import: following #{account} failed with #{inspect(err)}")
end
end)
end)