fix blog covers path for meta tags

This commit is contained in:
Jeremy Kauffman 2016-07-15 13:38:42 -04:00
parent cbccfa6e74
commit e9711a1e6e

View file

@ -249,7 +249,7 @@ class Post
$cover = $this->getCover(); $cover = $this->getCover();
if ($cover) if ($cover)
{ {
$urls[] = 'https://' . $_SERVER['SERVER_NAME'] . '/img/' . $cover; $urls[] = 'https://' . $_SERVER['SERVER_NAME'] . '/img/blog-covers/' . $cover;
} }
$matches = []; $matches = [];