this repo has no description
0
fork

Configure Feed

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

Fix bug: hashtags opening account sheet

+5 -1
+5 -1
src/utils/handle-content-links.js
··· 8 8 if (!target) return; 9 9 const prevText = target.previousSibling?.textContent; 10 10 const textBeforeLinkIsAt = prevText?.endsWith('@'); 11 - if (target.classList.contains('u-url') || textBeforeLinkIsAt) { 11 + const textStartsWithAt = target.innerText.startsWith('@'); 12 + if ( 13 + (target.classList.contains('u-url') && textStartsWithAt) || 14 + (textBeforeLinkIsAt && !textStartsWithAt) 15 + ) { 12 16 const targetText = ( 13 17 target.querySelector('span') || target 14 18 ).innerText.trim();