Skip to content

Commit

Permalink
Fix empty meta description tag. Fixes #1677
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Dec 3, 2018
1 parent 6370f7e commit 88e43cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Frontend/Content/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private function buildMeta(Document $document)

$meta = [
'viewport' => 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1',
'description' => array_get($forumApiDocument, 'data.attributes.forumDescription'),
'description' => array_get($forumApiDocument, 'data.attributes.description'),
'theme-color' => array_get($forumApiDocument, 'data.attributes.themePrimaryColor')
];

Expand Down

0 comments on commit 88e43cc

Please sign in to comment.