normalize hex number.
This commit is contained in:
		
							parent
							
								
									1422e7aa84
								
							
						
					
					
						commit
						59d4cc6036
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -34,6 +34,7 @@ def websub_subscription_confirmation(conn, %{"id" => id, "hub.mode" => "subscrib
 | 
			
		|||
 | 
			
		||||
  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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue