diff options
author | Mark Felder <feld@FreeBSd.org> | 2018-03-19 17:56:49 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSd.org> | 2018-03-19 17:56:49 +0000 |
commit | 9a858621d603422c4b992b9f9fe76da9331a6d0c (patch) | |
tree | f8ae2e0023cc1c743d3c0e4a5143ca5583dc2581 /lib | |
parent | 8d561f952fed2b2b4193f6586c865c877c1064ae (diff) | |
download | pleroma-9a858621d603422c4b992b9f9fe76da9331a6d0c.tar.gz |
AP and WebFinger need love here
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 965f2cc9b..e7484974e 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -321,7 +321,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub 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"} + _e -> {:error, "No AP id in WebFinger"} end end |