this repo has no description
0
fork

Configure Feed

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

Fix wrong logic for silent fail

Some mastodon instances are getting swamped

+2 -1
+2 -1
src/pages/status.jsx
··· 83 83 states.statuses.set(id, heroStatus); 84 84 } catch (e) { 85 85 // Silent fail if status is cached 86 + console.error(e); 86 87 if (!hasStatus) { 87 88 setUIState('error'); 88 89 alert('Error fetching status'); 90 + return; 89 91 } 90 - return; 91 92 } 92 93 93 94 try {