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
6550544b
Commit
6550544b
authored
May 24, 2016
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix. Bind to right context.
parent
8a74cc33
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
docs/CHANGES.md
docs/CHANGES.md
+8
-3
src/converse-rosterview.js
src/converse-rosterview.js
+2
-1
No files found.
docs/CHANGES.md
View file @
6550544b
# Changelog
# Changelog
## 1.0.2 (2016-05-24)
-
Bugfix. Bind
`sendPresence`
to the right context. Bug that slipped in during
the release of
`1.0.1`
. [jcbrand]
## 1.0.1 (2016-05-24)
## 1.0.1 (2016-05-24)
-
Bugfix. Roster filter sometimes gets hidden when it shouldn't.
-
Bugfix. Roster filter sometimes gets hidden when it shouldn't.
[jcbrand]
-
Chat boxes weren't being initialized due to typo.
-
Chat boxes weren't being initialized due to typo.
[jcbrand]
-
Flush request queue just after connection. Solves a problem with PubSub and
-
Flush request queue just after connection. Solves a problem with PubSub and
Prosody, whereby BOSH HTTP responses weren't being received.
Prosody, whereby BOSH HTTP responses weren't being received.
[jcbrand]
## 1.0.0 (2016-05-03)
## 1.0.0 (2016-05-03)
...
...
src/converse-rosterview.js
View file @
6550544b
...
@@ -292,7 +292,8 @@
...
@@ -292,7 +292,8 @@
* fetching the roster we are ready to receive presence
* fetching the roster we are ready to receive presence
* updates from our contacts.
* updates from our contacts.
*/
*/
converse
.
roster
.
fetchFromServer
(
converse
.
xmppstatus
.
sendPresence
);
converse
.
roster
.
fetchFromServer
(
converse
.
xmppstatus
.
sendPresence
.
bind
(
converse
.
xmppstatus
));
}
else
if
(
converse
.
send_initial_presence
)
{
}
else
if
(
converse
.
send_initial_presence
)
{
/* We're not going to fetch the roster again because we have
/* We're not going to fetch the roster again because we have
* it already cached in sessionStorage, but we still need to
* it already cached in sessionStorage, but we still need to
...
...
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