refactor: remove unused out var

This commit is contained in:
Oliver Booth 2024-02-25 15:58:21 +00:00
parent c1e5227289
commit 2431eda6f5
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
} }
@if (ViewData["Post"] is IBlogPost post) @if (ViewData["Post"] is IBlogPost post)
{ {
string excerpt = BlogPostService.RenderExcerpt(post, out bool trimmed); string excerpt = BlogPostService.RenderExcerpt(post, out _);
<meta name="title" content="@post.Title"> <meta name="title" content="@post.Title">
<meta name="description" content="@excerpt"> <meta name="description" content="@excerpt">
<meta property="og:title" content="@post.Title"> <meta property="og:title" content="@post.Title">