Remove a hardcoded HTTP method.

This commit is contained in:
Dillon Kearns 2019-11-08 07:37:26 -08:00
parent 80d8ee8a71
commit 51e8617dc3

View File

@ -56,8 +56,7 @@ get (Url ( UnmaskedUrl unmaskedUrl, maskedUrl )) gotResponse =
Http.expectString
(\response ->
gotResponse
-- TODO hash remove hardcoded GET
{ request = { url = maskedUrl, method = "GET" }
{ request = { url = maskedUrl, method = unmaskedUrl.method }
, response = response
}
)