From: Thomas Sileo Date: Sun, 28 Jul 2019 12:17:56 +0000 (+0200) Subject: Fix HTTP sig tweak on KeyId X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=961e7785314688b9e2445649c71e12023a982165;p=akkoma Fix HTTP sig tweak on KeyId --- diff --git a/lib/pleroma/signature.ex b/lib/pleroma/signature.ex index 0bf49fd7c..15bf3c317 100644 --- a/lib/pleroma/signature.ex +++ b/lib/pleroma/signature.ex @@ -15,7 +15,7 @@ defmodule Pleroma.Signature do |> Map.put(:fragment, nil) uri = - if String.ends_with?(uri.path, "/publickey") do + if not is_nil(uri.path) and String.ends_with?(uri.path, "/publickey") do Map.put(uri, :path, String.replace(uri.path, "/publickey", "")) else uri