Fix: HTTP signature wasn't being sent in AP POSTs
This commit is contained in:
parent
cd8ed9ef89
commit
e6f987817e
1 changed files with 1 additions and 1 deletions
|
@ -321,6 +321,6 @@ httpPostAP manager uri headers sign value =
|
||||||
let (k, s) = sign b
|
let (k, s) = sign b
|
||||||
in (Nothing, k, s)
|
in (Nothing, k, s)
|
||||||
req'' <- signRequest headers sign' Nothing req'
|
req'' <- signRequest headers sign' Nothing req'
|
||||||
httpNoBody req' manager
|
httpNoBody req'' manager
|
||||||
where
|
where
|
||||||
consHeader n b r = r { requestHeaders = (n, b) : requestHeaders r }
|
consHeader n b r = r { requestHeaders = (n, b) : requestHeaders r }
|
||||||
|
|
Loading…
Reference in a new issue