Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove error for refresh, not necessary (#4034)

authored by

Eric Bailey and committed by
GitHub
3674c8ab bf7b66d5

-11
-11
src/state/messages/convo/agent.ts
··· 517 517 this.recipients = recipients || this.recipients 518 518 } catch (e: any) { 519 519 logger.error(e, {context: `Convo: failed to refresh convo`}) 520 - 521 - this.footerItems.set(ConvoItemError.Network, { 522 - type: 'error-recoverable', 523 - key: ConvoItemError.Network, 524 - code: ConvoItemError.Network, 525 - retry: () => { 526 - this.footerItems.delete(ConvoItemError.Network) 527 - this.resume() 528 - }, 529 - }) 530 - this.commit() 531 520 } 532 521 } 533 522