diff --git a/src/buchdesmonats/core.clj b/src/buchdesmonats/core.clj index 7550047..74ae32b 100644 --- a/src/buchdesmonats/core.clj +++ b/src/buchdesmonats/core.clj @@ -51,8 +51,8 @@ (str/replace #"[^a-z0-9-_.]" "") (#(io/file target-dir %))))) -(defn scrape-book-urls [github-url] - (->> (http-client/get github-url) +(defn scrape-book-urls [datasource-url] + (->> (http-client/get datasource-url {:insecure? true}) :body str/split-lines (map #(second (re-find #"^\* .*\[.+\]\((.+)\)" %)))