fixes the compilation
This commit is contained in:
parent
aa098daed5
commit
30a0e10bae
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue