From 31f8a0be696fb1cb9d7caaa0ec86ed19d80803d5 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Wed, 4 May 2022 09:58:33 +0100 Subject: [PATCH] =?UTF-8?q?Add=20missing=20arguments=20to=20Http.expect=20?= =?UTF-8?q?=F0=9F=A4=94=F0=9F=A4=94=F0=9F=A4=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Pages/Top.elm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Pages/Top.elm b/src/Pages/Top.elm index 77f9bb3..0f4bded 100644 --- a/src/Pages/Top.elm +++ b/src/Pages/Top.elm @@ -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 }