fix/inactive-toolbar-buttons #38

Merged
notazof merged 12 commits from fix/inactive-toolbar-buttons into release/1.0.8-rc1 2026-08-19 20:02:49 +01:00
Showing only changes of commit 30a0e10bae - Show all commits

fixes the compilation

Paul Schneider 2026-08-19 15:45:49 +01:00
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

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