Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
5a48f3da
Commit
5a48f3da
authored
Jul 26, 2019
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clone auto_join_rooms values before passing in
otherwise values get tacked on, causing problems when reconnecting.
parent
6dd4fc52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
src/headless/converse-muc.js
src/headless/converse-muc.js
+10
-9
No files found.
src/headless/converse-muc.js
View file @
5a48f3da
...
...
@@ -2048,20 +2048,21 @@ converse.plugins.add('converse-muc', {
return
getChatRoom
(
jid
,
attrs
,
true
);
};
/**
* Automatically join groupchats, based on the
* "auto_join_rooms" configuration setting, which is an array
* of strings (groupchat JIDs) or objects (with groupchat JID and other
* settings).
*/
function
autoJoinRooms
()
{
/* Automatically join groupchats, based on the
* "auto_join_rooms" configuration setting, which is an array
* of strings (groupchat JIDs) or objects (with groupchat JID and other
* settings).
*/
_converse
.
auto_join_rooms
.
forEach
(
groupchat
=>
{
if
(
_converse
.
chatboxes
.
where
({
'
jid
'
:
groupchat
}).
length
)
{
return
;
}
if
(
_
.
isString
(
groupchat
))
{
if
(
_converse
.
chatboxes
.
where
({
'
jid
'
:
groupchat
}).
length
)
{
return
;
}
_converse
.
api
.
rooms
.
open
(
groupchat
);
}
else
if
(
_
.
isObject
(
groupchat
))
{
_converse
.
api
.
rooms
.
open
(
groupchat
.
jid
,
groupchat
);
_converse
.
api
.
rooms
.
open
(
groupchat
.
jid
,
_
.
clone
(
groupchat
)
);
}
else
{
_converse
.
log
(
'
Invalid groupchat criteria specified for "auto_join_rooms"
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment