Remove atom wrapping on public-uri

This commit is contained in:
Andrey Antukh 2023-06-21 17:44:00 +02:00
parent d11b007795
commit 0aefd044dc
14 changed files with 41 additions and 43 deletions

View file

@ -54,4 +54,4 @@
(log/info :hint "configure worker" :key key :val val)
(case key
:public-uri
(reset! cf/public-uri val)))
(set! cf/public-uri val)))

View file

@ -52,7 +52,7 @@
:strip-frames-with-thumbnails true
:features features}
request {:method :get
:uri (u/join @cf/public-uri path)
:uri (u/join cf/public-uri path)
:credentials "include"
:query params}]
(->> (http/send! request)