this repo has no description
0
fork

Configure Feed

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

Don't compact spoiler post if from different author

+1 -1
+1 -1
src/components/timeline.jsx
··· 412 412 const isMiddle = i > 0 && i < items.length - 1; 413 413 const isSpoiler = item.sensitive && !!item.spoilerText; 414 414 const showCompact = 415 - (isSpoiler && i > 0) || 415 + (!_differentAuthor && isSpoiler && i > 0) || 416 416 (manyItems && 417 417 isMiddle && 418 418 (type === 'thread' ||