An ATproto social media client -- with an independent Appview.
6
fork

Configure Feed

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

Fix: show known feed error UI more reliably (#4463)

authored by

Paul Frazee and committed by
GitHub
0404111f 7356763e

+2 -3
+2 -3
src/view/com/posts/FeedErrorMessage.tsx
··· 49 49 if ( 50 50 typeof knownError !== 'undefined' && 51 51 knownError !== KnownError.Unknown && 52 - (savedFeedConfig?.type === 'feed' || 53 - knownError === KnownError.FeedNSFPublic) 52 + feedDesc.startsWith('feedgen') 54 53 ) { 55 54 return ( 56 55 <FeedgenErrorMessage ··· 272 271 ) { 273 272 return KnownError.FeedgenMisconfigured 274 273 } 275 - if (error.includes('feed provided an invalid response')) { 274 + if (error.includes('invalid response')) { 276 275 return KnownError.FeedgenBadResponse 277 276 } 278 277 return KnownError.FeedgenUnknown