Remove error for refresh, not necessary (#4034)

zio/stable
Eric Bailey 2024-05-15 15:32:40 -05:00 committed by GitHub
parent bf7b66d5c1
commit 3674c8abce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 11 deletions

View File

@ -517,17 +517,6 @@ export class Convo {
this.recipients = recipients || this.recipients this.recipients = recipients || this.recipients
} catch (e: any) { } catch (e: any) {
logger.error(e, {context: `Convo: failed to refresh convo`}) 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()
} }
} }