🐛 Fix again for included non-exists anymore attachments field

This commit is contained in:
2025-06-02 02:56:58 +08:00
parent 568afc981e
commit f5fb133e99
3 changed files with 0 additions and 6 deletions

View File

@ -297,8 +297,6 @@ public class PostController(
var post = await db.Posts
.Where(e => e.Id == id)
.Include(e => e.Publisher)
.Include(e => e.Publisher.Picture)
.Include(e => e.Publisher.Background)
.Include(e => e.Categories)
.Include(e => e.Tags)
.FirstOrDefaultAsync();