Add missing arguments to Http.expect 🤔🤔🤔
continuous-integration/drone/push Build is passing Details

This commit is contained in:
3wc 2022-05-04 09:58:33 +01:00
parent 9c4522dceb
commit 31f8a0be69
1 changed files with 5 additions and 0 deletions

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
}