From bd521fdbffd646c7a55f87ccbd32b940606c3a5b Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Wed, 19 Aug 2026 15:45:49 +0100 Subject: [PATCH] fixes the compilation --- src/Yavsc.Org/Services/BlogSpotService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Yavsc.Org/Services/BlogSpotService.cs b/src/Yavsc.Org/Services/BlogSpotService.cs index 02eabffc6..5a47e85ed 100644 --- a/src/Yavsc.Org/Services/BlogSpotService.cs +++ b/src/Yavsc.Org/Services/BlogSpotService.cs @@ -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;