activitypub: add outbox endpoint
[akkoma] / lib / pleroma / web / web_finger / web_finger.ex
index c59a7e82da114836747ee006f8c1d1f16bee114a..019210124584c0901359f91d46eaca6cf05e574b 100644 (file)
@@ -100,7 +100,7 @@ defmodule Pleroma.Web.WebFinger do
         with {:ok, %{body: body}} <- @httpoison.get("https://#{domain}/.well-known/host-meta", []) do
           get_template_from_xml(body)
         else
-          e -> {:error, "Can't find lrdd template: #{inspect(e)}"}
+          e -> {:error, "Can't find LRDD template: #{inspect(e)}"}
         end
     end
   end
@@ -122,7 +122,7 @@ defmodule Pleroma.Web.WebFinger do
       {:ok, data}
     else
       e ->
-        Logger.debug(fn -> "Couldn't finger #{account}." end)
+        Logger.debug(fn -> "Couldn't finger #{account}" end)
         Logger.debug(fn -> inspect(e) end)
         {:error, e}
     end