Add missing arguments to Http.expect 🤔🤔🤔
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
3wc 2022-05-04 09:58:33 +01:00
parent 9c4522dceb
commit 31f8a0be69

View File

@ -381,6 +381,11 @@ loadApps =
Http.request
{ url = "https://recipes.coopcloud.tech/recipes.json"
, expect = Http.expectJson GotApps appListDecoder
, headers = [ Http.header "Content-Type" "application/json" ]
, body = Http.emptyBody
, method = "GET"
, timeout = Nothing
, tracker = Nothing
}