mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 23:18:48 -05:00
Merge pull request #1788 from penpot/hirunatan-fix-multi-user
Hirunatan fix multi user
This commit is contained in:
commit
e62f0603b5
2 changed files with 4 additions and 5 deletions
|
@ -83,6 +83,7 @@
|
||||||
- Fix undo when rotating groups [Taiga #3136](https://tree.taiga.io/project/penpot/issue/3136)
|
- Fix undo when rotating groups [Taiga #3136](https://tree.taiga.io/project/penpot/issue/3136)
|
||||||
- Fix component name in sidebar widget [Taiga #3144](https://tree.taiga.io/project/penpot/issue/3144)
|
- Fix component name in sidebar widget [Taiga #3144](https://tree.taiga.io/project/penpot/issue/3144)
|
||||||
- Fix resize rotated shape with top&down constraints [Taiga #3167](https://tree.taiga.io/project/penpot/issue/3167)
|
- Fix resize rotated shape with top&down constraints [Taiga #3167](https://tree.taiga.io/project/penpot/issue/3167)
|
||||||
|
- Fix multi user not working [Taiga #3195](https://tree.taiga.io/project/penpot/issue/3195)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
### :heart: Community contributions by (Thank you!)
|
### :heart: Community contributions by (Thank you!)
|
||||||
|
|
|
@ -55,8 +55,8 @@
|
||||||
(->> stream
|
(->> stream
|
||||||
(rx/filter (ptk/type? ::dws/message))
|
(rx/filter (ptk/type? ::dws/message))
|
||||||
(rx/map deref)
|
(rx/map deref)
|
||||||
(rx/map process-message)
|
(rx/filter #(= subs-id (:subs-id %)))
|
||||||
(rx/filter #(= subs-id (:subs-id %))))
|
(rx/map process-message))
|
||||||
|
|
||||||
;; On reconnect, send again the subscription messages
|
;; On reconnect, send again the subscription messages
|
||||||
(->> stream
|
(->> stream
|
||||||
|
@ -158,9 +158,7 @@
|
||||||
(update-presence [presence]
|
(update-presence [presence]
|
||||||
(-> presence
|
(-> presence
|
||||||
(update session-id update-session presence)
|
(update session-id update-session presence)
|
||||||
(d/without-nils)))
|
(d/without-nils)))]
|
||||||
|
|
||||||
]
|
|
||||||
|
|
||||||
(ptk/reify ::handle-presence
|
(ptk/reify ::handle-presence
|
||||||
ptk/UpdateEvent
|
ptk/UpdateEvent
|
||||||
|
|
Loading…
Add table
Reference in a new issue