Merge pull request #11617 from sunhoww/patch-1
fix: show unique users during viewing/typing notify
This commit is contained in:
commit
75c15633f7
1 changed files with 1 additions and 1 deletions
|
|
@ -407,6 +407,6 @@ function send_users(args, action) {
|
|||
io.to(open_doc_room).emit(emit_event, {
|
||||
doctype: args.doctype,
|
||||
docname: args.docname,
|
||||
users: users
|
||||
users: Array.from(new Set(users))
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue