fixes the compilation

This commit is contained in:
Paul Schneider 2026-08-19 15:45:49 +01:00
commit bd521fdbff

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;