normalize hex number.

This commit is contained in:
Roger Braun 2017-04-28 15:53:45 +02:00
parent 1422e7aa84
commit 59d4cc6036
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ defmodule Pleroma.Web.Websub.WebsubController do
def websub_incoming(conn, %{"id" => id}) do
with "sha1=" <> signature <- hd(get_req_header(conn, "x-hub-signature")),
signature <- String.upcase(signature),
%WebsubClientSubscription{} = websub <- Repo.get(WebsubClientSubscription, id),
{:ok, body, _conn} = read_body(conn),
^signature <- Websub.sign(websub.secret, body) do