Skip to content

Commit 45643d5

Browse files
committed
fixes #1225
1 parent defe32d commit 45643d5

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44

55
- M4A and WEBM files when sent as XEP-0066 Out of Band Data, are now playable directly in chat
66
- OMEMO fixes for Edge.
7+
- #1187 UTF-8 characters have the wrong encoding when using OMEMO
8+
- #1189 Video playback failure
79
- #1220 Converse not working in Edge
10+
- #1225 User profile sometimes not displayed when libsignal-protocol.js is used
811

912
## 4.0.1 (2018-09-19)
1013

11-
- Use https://compliance.conversations.im instead of (dead) https://xmpp.net
14+
- Use https://compliance.conversations.im instead of dead link tot st https://xmpp.net
1215
- New config setting [auto_register_muc_nickname](https://conversejs.org/docs/html/configuration.html#auto-register-muc-nickname)
1316
- New config setting [enable_muc_push](https://conversejs.org/docs/html/configuration.html#enable-muc-push)
1417
- #1182 MUC occupants without nick or JID created

dist/converse.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -80475,13 +80475,13 @@ __e(o.__('Save and close')) +
8047580475
if (o._converse.pluggable.plugins['converse-omemo'].enabled(o._converse)) { ;
8047680476
__p += '\n <div class="tab-pane fade" id="omemo-tabpanel" role="tabpanel" aria-labelledby="omemo-tab">\n <form class="converse-form fingerprint-removal">\n <ul class="list-group fingerprints">\n <li class="list-group-item active">' +
8047780477
__e(o.__("This device's OMEMO fingerprint")) +
80478-
'</li>\n <li class="list-group-item">\n ';
80479-
if (o.view.current_device.get('bundle') && o.view.current_device.get('bundle').fingerprint) { ;
80478+
'</li>\n <li class="list-group-item">\n ';
80479+
if (o.view.current_device && o.view.current_device.get('bundle') && o.view.current_device.get('bundle').fingerprint) { ;
8048080480
__p += '\n <span class="fingerprint">' +
8048180481
__e(o.utils.formatFingerprint(o.view.current_device.get('bundle').fingerprint)) +
80482-
'</span>\n ';
80482+
'</span>\n ';
8048380483
} else {;
80484-
__p += '\n <span class="spinner fa fa-spinner centered"/>\n ';
80484+
__p += '\n <span class="spinner fa fa-spinner centered"/>\n ';
8048580485
} ;
8048680486
__p += '\n </li>\n </ul>\n ';
8048780487
if (o.view.other_devices.length) { ;

src/templates/profile_modal.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ <h5 class="modal-title" id="user-profile-modal-label">{{{o.heading_profile}}}</h
7171
<ul class="list-group fingerprints">
7272
<li class="list-group-item active">{{{o.__("This device's OMEMO fingerprint")}}}</li>
7373
<li class="list-group-item">
74-
{[ if (o.view.current_device.get('bundle') && o.view.current_device.get('bundle').fingerprint) { ]}
74+
{[ if (o.view.current_device && o.view.current_device.get('bundle') && o.view.current_device.get('bundle').fingerprint) { ]}
7575
<span class="fingerprint">{{{o.utils.formatFingerprint(o.view.current_device.get('bundle').fingerprint)}}}</span>
76-
{[ } else {]}
77-
<span class="spinner fa fa-spinner centered"/>
78-
{[ } ]}
76+
{[ } else {]}
77+
<span class="spinner fa fa-spinner centered"/>
78+
{[ } ]}
7979
</li>
8080
</ul>
8181
{[ if (o.view.other_devices.length) { ]}

0 commit comments

Comments
 (0)