diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-01 13:55:22 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-01 13:55:22 -0700 |
| commit | d171a3c14802e319ffa561ebc899ecc440611052 (patch) | |
| tree | 6f7edba1406ca262990249280307468a181018ab | |
| parent | f99646b876dd0ec265611dbb959a0c7ff5808684 (diff) | |
keep content even if headline becomes content (og description tag usage)
| -rw-r--r-- | middleware/src/app/[gameName]/page.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/middleware/src/app/[gameName]/page.tsx b/middleware/src/app/[gameName]/page.tsx index 10e8b40..5a4f0ff 100644 --- a/middleware/src/app/[gameName]/page.tsx +++ b/middleware/src/app/[gameName]/page.tsx @@ -44,7 +44,6 @@ export async function generateMetadata({ } if (!matchingPost.headline) { matchingPost.headline = matchingPost.content; - matchingPost.content = ""; } return { title: matchingPost.headline, |
