From 4d13cc0dc6290abe3cc99a9de52bd929af317389 Mon Sep 17 00:00:00 2001 From: lain Date: Sun, 25 Feb 2018 16:52:33 +0100 Subject: Fix specs. --- lib/pleroma/web/activity_pub/activity_pub.ex | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 87ad45249..667f8fc15 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -314,7 +314,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do with {:ok, data} <- fetch_and_prepare_user_from_ap_id(ap_id) do User.insert_or_update_user(data) else - e -> e + e -> {:error, e} end end end @@ -322,6 +322,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do def make_user_from_nickname(nickname) do with {:ok, %{"ap_id" => ap_id}} when not is_nil(ap_id) <- WebFinger.finger(nickname) do make_user_from_ap_id(ap_id) + else + _e -> {:error, "No ap id in webfinger"} end end -- cgit v1.2.3