forked from AkkomaGang/akkoma
Just sign with an empty string if needed.
This commit is contained in:
parent
151da344be
commit
5d9f3df714
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ def publish(topic, user, activity) do
|
|||
|> :xmerl.export_simple(:xmerl_xml)
|
||||
|> to_string
|
||||
|
||||
signature = sign(sub.secret, response)
|
||||
signature = sign(sub.secret || "", response)
|
||||
Logger.debug("Pushing to #{sub.callback}")
|
||||
HTTPoison.post(sub.callback, response, [
|
||||
{"Content-Type", "application/atom+xml"},
|
||||
|
|
Loading…
Reference in a new issue