Merge branch 'release/2.0.3' into 'stable'
[akkoma] / lib / pleroma / plugs / mapped_signature_to_identity_plug.ex
index 4f124ed4dd6cc3ec2b0bcb7390671dea77daf98d..4cc93adb05096c5aa744b3e1588ca63455b91326 100644 (file)
@@ -13,8 +13,9 @@ defmodule Pleroma.Web.Plugs.MappedSignatureToIdentityPlug do
   def init(options), do: options
 
   defp key_id_from_conn(conn) do
-    with %{"keyId" => key_id} <- HTTPSignatures.signature_for_conn(conn) do
-      Signature.key_id_to_actor_id(key_id)
+    with %{"keyId" => key_id} <- HTTPSignatures.signature_for_conn(conn),
+         {:ok, ap_id} <- Signature.key_id_to_actor_id(key_id) do
+      ap_id
     else
       _ ->
         nil