this repo has no description
0
fork

Configure Feed

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

Fix some accounts not working

All these webfinger/custom-server/moving-instances things are very annoying

+4 -1
+4 -1
src/components/status.jsx
··· 354 354 ).innerText 355 355 .trim() 356 356 .replace(/^@/, ''); 357 + const url = target.getAttribute('href'); 357 358 const mention = mentions.find( 358 359 (mention) => 359 - mention.username === username || mention.acct === username, 360 + mention.username === username || 361 + mention.acct === username || 362 + mention.url === url, 360 363 ); 361 364 if (mention) { 362 365 states.showAccount = mention.acct;