a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

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

[backend/masto-client] Fix direct & hashtag timeline visibility checks

+2
+2
Iceshrimp.Backend/Controllers/Mastodon/TimelineController.cs
··· 96 96 return await db.Notes 97 97 .IncludeCommonProperties() 98 98 .HasVisibility(Note.NoteVisibility.Specified) 99 + .EnsureVisibleFor(user) 99 100 .FilterHidden(user, db) 100 101 .FilterMutedThreads(user, db) 101 102 .Paginate(query, ControllerContext) ··· 114 115 return await db.Notes 115 116 .IncludeCommonProperties() 116 117 .Where(p => p.Tags.Contains(hashtag.ToLowerInvariant())) 118 + .EnsureVisibleFor(user) 117 119 .FilterByHashtagTimelineRequest(request, db) 118 120 .FilterHidden(user, db) 119 121 .FilterMutedThreads(user, db)