Wrap polling function in try finally for safety, fix issue with empty array check and lint

pull/473/head
Beaudan Brown 6 years ago
parent 14f5fc53be
commit 0dd180d4f4

@ -411,6 +411,16 @@ class LokiPublicChannelAPI {
// get channel messages
async pollForMessages() {
try {
await this.pollOnceForMessages();
} finally {
setTimeout(() => {
this.pollForMessages();
}, GROUPCHAT_POLL_EVERY);
}
}
async pollOnceForMessages() {
const params = {
include_annotations: 1,
count: -20,
@ -437,7 +447,10 @@ class LokiPublicChannelAPI {
if (adnMessage.is_deleted) {
return;
}
if (adnMessage.annotations !== []) {
if (
Array.isArray(adnMessage.annotations) &&
adnMessage.annotations.length !== 0
) {
const noteValue = adnMessage.annotations[0].value;
({ from, timestamp, source } = noteValue);
}
@ -493,10 +506,6 @@ class LokiPublicChannelAPI {
});
conversation.setLastRetrievedMessage(this.lastGot);
}
setTimeout(() => {
this.pollForMessages();
}, GROUPCHAT_POLL_EVERY);
}
// create a message in the channel

@ -56,18 +56,16 @@ export class MessageDetail extends React.Component<Props> {
public renderDeleteButton() {
const { i18n, message } = this.props;
return (
message.isDeletable ? (
<div className="module-message-detail__delete-button-container">
<button
onClick={message.onDelete}
className="module-message-detail__delete-button"
>
{i18n('deleteThisMessage')}
</button>
</div>
) : null
);
return message.isDeletable ? (
<div className="module-message-detail__delete-button-container">
<button
onClick={message.onDelete}
className="module-message-detail__delete-button"
>
{i18n('deleteThisMessage')}
</button>
</div>
) : null;
}
public renderContact(contact: Contact) {

Loading…
Cancel
Save