diff --git a/app/hyap.hy b/app/hyap.hy index 9ba82e3..5ce60d9 100644 --- a/app/hyap.hy +++ b/app/hyap.hy @@ -7,7 +7,7 @@ [url] (.info logger url) (return (.json - (with/a [client (.AsyncClient httpx)] - (await (.get client url :headers - {"User-Agent" config.USER_AGENT - "Accept" config.AP_CONTENT_TYPE})))))) + (with/a [client (.AsyncClient httpx)] + (let [headers {"User-Agent" config.USER_AGENT + "Accept" config.AP_CONTENT_TYPE}] + (await (.get client url :headers headers)))))))