Skip to content

Commit

Permalink
Update meta og:image tag display
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonny committed Jul 26, 2022
1 parent 5d526e5 commit d63a0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/library/astroid/Component/Utility.php
Expand Up @@ -84,7 +84,7 @@ public static function meta()
$document->addMeta('twitter:creator', '@' . $tw_id);
}
if (!empty($og_image)) {
$document->addMeta('og:image', $og_image);
$document->addMeta('og:image', $og_image, ['property' => 'og:image']);
}
}

Expand Down

1 comment on commit d63a0f2

@sonvnn
Copy link
Member

@sonvnn sonvnn commented on d63a0f2 Jul 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will fix issue #155

Please sign in to comment.