Compare commits

...

1 Commits

Author SHA1 Message Date
alonso.torres
3e6e7b0e70 🐛 Fix problem with export dialog on single board 2026-02-20 13:04:06 +01:00
3 changed files with 13 additions and 10 deletions

View File

@@ -100,12 +100,14 @@
(def browser-pool-factory
(letfn [(create []
(p/let [opts #js {:args #js ["--allow-insecure-localhost" "--font-render-hinting=none"]}
browser (.launch pw/chromium opts)
id (swap! pool-browser-id inc)]
(l/info :origin "factory" :action "create" :browser-id id)
(unchecked-set browser "__id" id)
browser))
(-> (p/let [opts #js {:args #js ["--allow-insecure-localhost" "--font-render-hinting=none"]}
browser (.launch pw/chromium opts)
id (swap! pool-browser-id inc)]
(l/info :origin "factory" :action "create" :browser-id id)
(unchecked-set browser "__id" id)
browser)
(p/catch (fn [cause]
(l/error :hint "Cannot launch the headless browser" :cause cause)))))
(destroy [obj]
(let [id (unchecked-get obj "__id")]

View File

@@ -47,12 +47,13 @@
(s/def ::params
(s/keys :req-un [::exports ::profile-id]
:opt-un [::wait ::name ::skip-children]))
:opt-un [::wait ::name ::skip-children ::as-many]))
(defn handler
[{:keys [:request/auth-token] :as exchange} {:keys [exports] :as params}]
[{:keys [:request/auth-token] :as exchange} {:keys [exports force-multiple] :as params}]
(let [exports (prepare-exports exports auth-token)]
(if (and (= 1 (count exports))
(if (and (not force-multiple)
(= 1 (count exports))
(= 1 (count (-> exports first :objects))))
(handle-single-export exchange (-> params
(assoc :export (first exports))

View File

@@ -195,7 +195,7 @@
params {:exports exports
:cmd cmd
:profile-id profile-id
:wait false}
:force-multiple true}
progress-stream
(->> (ws/get-rcv-stream ws-conn)