Apply suggestion to lib/pleroma/web/activity_pub/publisher.ex

This commit is contained in:
kaniini 2019-08-14 19:05:44 +00:00 committed by Ariadne Conill
parent 974488a52e
commit 9aec8fe242
1 changed files with 1 additions and 3 deletions

View File

@ -44,9 +44,7 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
"""
def publish_one(%{inbox: inbox, json: json, actor: %User{} = actor, id: id} = params) do
Logger.info("Federating #{id} to #{inbox}")
uri = URI.parse(inbox)
host = uri.host
path = uri.path
%{host: host, path: path} = URI.parse(inbox)
digest = "SHA-256=" <> (:crypto.hash(:sha256, json) |> Base.encode64())