don't send view-sig namespace out with view data refreshes
i guess for now view namespaces are a server-side only thing? they were never being sent out before
This commit is contained in:
parent
e4cae8772e
commit
5e253fce31
|
@ -53,7 +53,7 @@
|
|||
(defn- send-view-data!
|
||||
[subscriber-key {:keys [namespace view-id parameters] :as view-sig} data]
|
||||
(if-let [send-fn (:send-fn @view-system)]
|
||||
(send-fn subscriber-key [[view-id parameters] data])
|
||||
(send-fn subscriber-key [(dissoc view-sig :namespace) data])
|
||||
(throw (new Exception "no send-fn function set in view-system"))))
|
||||
|
||||
(defn- subscribe-view!
|
||||
|
|
Loading…
Reference in a new issue