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
10da92ec
Commit
10da92ec
authored
Mar 22, 2019
by
Christoph Scholz
Committed by
JC Brand
Mar 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix LMC with Conversations
parent
dbccc08c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGES.md
CHANGES.md
+1
-0
dist/converse.js
dist/converse.js
+1
-1
src/headless/converse-chatboxes.js
src/headless/converse-chatboxes.js
+1
-1
No files found.
CHANGES.md
View file @
10da92ec
...
...
@@ -23,6 +23,7 @@
-
#1479: Allow file upload by drag & drop also in MUCs
-
#1487: New config option
[
muc_respect_autojoin
](
https://conversejs.org/docs/html/configuration.html#muc-respect-autojoin
)
-
#1501: Don't prompt for a reason if
[
auto_join_on_invite
](
https://conversejs.org/docs/html/configuration.html#auto-join-on-invite
)
is
`true`
-
#1507: Make message id and origin-id identical in order to fix LMC with Conversations
## 4.1.2 (2019-02-22)
...
...
dist/converse.js
View file @
10da92ec
...
...
@@ -62474,7 +62474,7 @@ _converse_core__WEBPACK_IMPORTED_MODULE_2__["default"].plugins.add('converse-cha
origin_id = _converse.connection.getUniqueId();
return _.extend(this.toJSON(), {
'id': origin_id,
'
msg
id': origin_id,
'origin_id': origin_id,
'fullname': _converse.xmppstatus.get('fullname'),
'from': _converse.bare_jid,
src/headless/converse-chatboxes.js
View file @
10da92ec
...
...
@@ -499,7 +499,7 @@ converse.plugins.add('converse-chatboxes', {
origin_id
=
_converse
.
connection
.
getUniqueId
();
return
_
.
extend
(
this
.
toJSON
(),
{
'
id
'
:
origin_id
,
'
msg
id
'
:
origin_id
,
'
origin_id
'
:
origin_id
,
'
fullname
'
:
_converse
.
xmppstatus
.
get
(
'
fullname
'
),
'
from
'
:
_converse
.
bare_jid
,
...
...
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