this repo has no description
0
fork

Configure Feed

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

Enable unfurling when fetching reply hints

-2
-2
src/utils/timeline-utils.jsx
··· 227 227 const replyToStatus = await fetchStatus(inReplyToId, masto); 228 228 saveStatus(replyToStatus, instance, { 229 229 skipThreading: true, 230 - skipUnfurling: true, 231 230 }); 232 231 states.statusReply[sKey] = { 233 232 id: replyToStatus.id, ··· 253 252 for (const replyToStatus of replyToStatuses) { 254 253 saveStatus(replyToStatus, instance, { 255 254 skipThreading: true, 256 - skipUnfurling: true, 257 255 }); 258 256 const sKey = inReplyToIds.find( 259 257 ({ inReplyToId }) => inReplyToId === replyToStatus.id,