|
|
@ -96,6 +96,7 @@
|
|
|
|
this.messageCollection.on('change:errors', this.handleMessageError, this);
|
|
|
|
this.messageCollection.on('change:errors', this.handleMessageError, this);
|
|
|
|
this.messageCollection.on('send-error', this.onMessageError, this);
|
|
|
|
this.messageCollection.on('send-error', this.onMessageError, this);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.throttledBumpTyping = _.throttle(this.bumpTyping, 300);
|
|
|
|
const debouncedUpdateLastMessage = _.debounce(
|
|
|
|
const debouncedUpdateLastMessage = _.debounce(
|
|
|
|
this.updateLastMessage.bind(this),
|
|
|
|
this.updateLastMessage.bind(this),
|
|
|
|
200
|
|
|
|
200
|
|
|
@ -1502,11 +1503,13 @@
|
|
|
|
// This might throw if we can't pull the avatar down, so we do it last
|
|
|
|
// This might throw if we can't pull the avatar down, so we do it last
|
|
|
|
await c.setProfileAvatar(profile.avatar);
|
|
|
|
await c.setProfileAvatar(profile.avatar);
|
|
|
|
} catch (error) {
|
|
|
|
} catch (error) {
|
|
|
|
window.log.error(
|
|
|
|
if (error.code !== 403 && error.code !== 404) {
|
|
|
|
'getProfile error:',
|
|
|
|
window.log.error(
|
|
|
|
id,
|
|
|
|
'getProfile error:',
|
|
|
|
error && error.stack ? error.stack : error
|
|
|
|
id,
|
|
|
|
);
|
|
|
|
error && error.stack ? error.stack : error
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
} finally {
|
|
|
|
if (c.hasChanged()) {
|
|
|
|
if (c.hasChanged()) {
|
|
|
|
await window.Signal.Data.updateConversation(id, c.attributes, {
|
|
|
|
await window.Signal.Data.updateConversation(id, c.attributes, {
|
|
|
|