diff --git a/src/utils/timeline-utils.jsx b/src/utils/timeline-utils.jsx index 128b4904..f15dff8d 100644 --- a/src/utils/timeline-utils.jsx +++ b/src/utils/timeline-utils.jsx @@ -219,7 +219,7 @@ export async function assignFollowedTags(items, instance) { statusWithFollowedTags.forEach((s) => { const { item, sKey, followedTags } = s; const r = relationships[item.account.id]; - if (!r.following) { + if (r && !r.following) { statusFollowedTags[sKey] = followedTags; } });