Compare commits

...

1 Commits

Author SHA1 Message Date
Eric Bailey 1b04e937bd Remove error for refresh, not necessary 2024-05-15 15:26:41 -05:00
-11
View File
@@ -517,17 +517,6 @@ export class Convo {
this.recipients = recipients || this.recipients
} catch (e: any) {
logger.error(e, {context: `Convo: failed to refresh convo`})
this.footerItems.set(ConvoItemError.Network, {
type: 'error-recoverable',
key: ConvoItemError.Network,
code: ConvoItemError.Network,
retry: () => {
this.footerItems.delete(ConvoItemError.Network)
this.resume()
},
})
this.commit()
}
}