fixed encoding issue

This commit is contained in:
rdiedrich 2020-06-29 13:16:16 +02:00
parent 567de507f5
commit 287a170402

View File

@ -21,7 +21,6 @@
query {:pagenumber page}]
{:href base-url :params query})))
(defn login-response [username password session]
(with-open [client (http/create-client)]
(let [login-url (str url "account.php")
@ -55,4 +54,6 @@
headers (http/headers resp)]
(-> resp
http/await
http/string))))
http/body
.toByteArray
(String. "windows-1252")))))