From 30a0e10bae0922d6e4740a46e311be4522a1001a 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 02eabffc..5a47e85e 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;