We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edc929c commit 84144f0Copy full SHA for 84144f0
src-cljs/chatb0x/core.cljs
@@ -66,6 +66,7 @@
66
67
(set! (.-onopen socket)
68
(fn [event]
69
+ (.send socket {:new-path path :new-host host})
70
(println "WebSocket connected. Destination: " ws-url)))
71
72
;; The keys are all ints, so sort them such that :10 > :2
src/chatb0x/core.clj
@@ -185,7 +185,7 @@
185
:credential-fn #(creds/bcrypt-credential-fn @users %)
186
:workflows [(workflows/interactive-form)]})
187
; required Ring middlewares
188
- (wrap-verbose) ; log the request map
+ ;;(wrap-verbose) ; log the request map
189
(wrap-reload)
190
(wrap-drop-www)
191
(wrap-keyword-params)
0 commit comments