Skip to content
This repository was archived by the owner on Jun 16, 2023. It is now read-only.

Commit 86df3a5

Browse files
custom status fix
1 parent dae2762 commit 86df3a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client-pony-house",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"description": "The tiny Pony House matrix client",
55
"main": "index.js",
66
"engines": {

src/app/molecules/people-selector/PeopleSelector.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function PeopleSelector({
3131
content.presence !== 'offline' && content.presence !== 'unavailable' &&
3232
typeof content.presenceStatusMsg.msg === 'string' && content.presenceStatusMsg.msg.length > 0
3333
) {
34-
customStatus.innerHTML = ReactDOMServer.renderToStaticMarkup(twemojify(content.presenceStatusMsg.msg.substring(0, 100), undefined, true, false, true));
34+
customStatus.innerHTML = ReactDOMServer.renderToStaticMarkup(twemojify(content.presenceStatusMsg.msg.substring(0, 100)));
3535
} else {
3636
customStatus.innerHTML = '';
3737
}

src/app/organisms/profile-viewer/ProfileViewer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ function ProfileViewer() {
419419
content.presence !== 'offline' && content.presence !== 'unavailable' &&
420420
typeof content.presenceStatusMsg.msg === 'string' && content.presenceStatusMsg.msg.length > 0
421421
) {
422-
customStatusDOM.innerHTML = ReactDOMServer.renderToStaticMarkup(twemojify(content.presenceStatusMsg.msg.substring(0, 100), undefined, true, false, true));
422+
customStatusDOM.innerHTML = ReactDOMServer.renderToStaticMarkup(twemojify(content.presenceStatusMsg.msg.substring(0, 100)));
423423
} else {
424424
customStatusDOM.classList.add('d-none');
425425
customStatusDOM.innerHTML = '';

src/client/state/cons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const cons = {
2-
version: '1.3.4',
2+
version: '1.3.5',
33
secretKey: {
44
ACCESS_TOKEN: 'cinny_access_token',
55
DEVICE_ID: 'cinny_device_id',

0 commit comments

Comments
 (0)