fixes the compilation

This commit is contained in:
Paul Schneider 2026-08-19 15:45:49 +01:00
commit 30a0e10bae
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

@ -109,7 +109,7 @@ public class OldBlogSpotService
.Include(p => p.Tags)
.Include(p => p.Comments)
.Include(p => p.ACL)
.SingleAsync((object m) => m.Id == blogPostId);
.SingleAsync(m => m.Id == blogPostId);
if (blog == null)
{
return null;