mirror of https://github.com/usbharu/Hideout.git
fix: ホストのポート番号がおかしくなるのでとりあえず削除
This commit is contained in:
parent
068cbbc076
commit
08f45e1a8e
|
@ -63,7 +63,7 @@ val httpSignaturePlugin = createClientPlugin("HttpSign", ::HttpSignaturePluginCo
|
||||||
|
|
||||||
|
|
||||||
request.header("Date", format.format(Date()))
|
request.header("Date", format.format(Date()))
|
||||||
request.header("Host",request.url.host+request.url.port.toString())
|
request.header("Host", "${request.url.host}")
|
||||||
println(request.bodyType)
|
println(request.bodyType)
|
||||||
println(request.bodyType?.type)
|
println(request.bodyType?.type)
|
||||||
if (request.bodyType?.type == String::class) {
|
if (request.bodyType?.type == String::class) {
|
||||||
|
|
Loading…
Reference in New Issue