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
f123f483
Commit
f123f483
authored
Feb 21, 2019
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1406
parent
ce2ae87d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGES.md
CHANGES.md
+1
-0
dist/converse.js
dist/converse.js
+2
-2
src/converse-omemo.js
src/converse-omemo.js
+1
-1
src/headless/converse-core.js
src/headless/converse-core.js
+1
-1
No files found.
CHANGES.md
View file @
f123f483
...
...
@@ -4,6 +4,7 @@
-
Bugfix. Prevent duplicate messages by comparing MAM archive id to XEP-0359 stanza ids.
-
Bugfix. Open groupchats not shown when logging in after disconnection.
-
#1406:
`TypeError: e.devicelists is undefined`
when unchecking the "trusted device" checkbox
## 4.1.1 (2019-02-18)
...
...
dist/converse.js
View file @
f123f483
...
...
@@ -55844,7 +55844,7 @@ function parseBundle(bundle_el) {
_converse_headless_converse_core__WEBPACK_IMPORTED_MODULE_0__["default"].plugins.add('converse-omemo', {
enabled(_converse) {
return !_.isNil(window.libsignal) && !f.includes('converse-omemo', _converse.blacklisted_plugins);
return !_.isNil(window.libsignal) && !f.includes('converse-omemo', _converse.blacklisted_plugins)
&& _converse.config.get('trusted')
;
},
dependencies: ["converse-chatview", "converse-pubsub"],
...
...
@@ -62991,8 +62991,8 @@ function setUpXMLLogging() {
}
function finishInitialization() {
initPlugins();
initClientConfig();
initPlugins();
_converse.initConnection();
src/converse-omemo.js
View file @
f123f483
...
...
@@ -67,7 +67,7 @@ function parseBundle (bundle_el) {
converse
.
plugins
.
add
(
'
converse-omemo
'
,
{
enabled
(
_converse
)
{
return
!
_
.
isNil
(
window
.
libsignal
)
&&
!
f
.
includes
(
'
converse-omemo
'
,
_converse
.
blacklisted_plugins
);
return
!
_
.
isNil
(
window
.
libsignal
)
&&
!
f
.
includes
(
'
converse-omemo
'
,
_converse
.
blacklisted_plugins
)
&&
_converse
.
config
.
get
(
'
trusted
'
)
;
},
dependencies
:
[
"
converse-chatview
"
,
"
converse-pubsub
"
],
...
...
src/headless/converse-core.js
View file @
f123f483
...
...
@@ -416,8 +416,8 @@ function setUpXMLLogging () {
function
finishInitialization
()
{
initPlugins
();
initClientConfig
();
initPlugins
();
_converse
.
initConnection
();
setUpXMLLogging
();
_converse
.
logIn
();
...
...
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