this repo has no description
0
fork

Configure Feed

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

Preliminary support for native quotes

+12
+12
src/utils/states.js
··· 223 223 }, 224 224 ]; 225 225 } 226 + // Mastodon native quotes 227 + if (status.quote?.state === 'accepted' && status.quote?.quotedStatus) { 228 + const { quotedStatus } = status.quote; 229 + const sKey = statusKey(quotedStatus.id, instance); 230 + states.statuses[sKey] = quotedStatus; 231 + states.statusQuotes[key] = [ 232 + { 233 + id: quotedStatus.id, 234 + instance, 235 + }, 236 + ]; 237 + } 226 238 }); 227 239 228 240 // THREAD TRAVERSER