remove https in meta since we do not actually have SSL...

This commit is contained in:
Jeremy Kauffman 2015-12-07 14:10:34 -05:00
parent b82cfab503
commit 9b98a19dbd
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ class Response
public static function getMetaImage()
{
return static::$metaImg ?: 'https://lbry.io/img/lbry-dark-1600x528.png';
return static::$metaImg ?: 'http://lbry.io/img/lbry-dark-1600x528.png';
}
public static function setMetaTitle($title)

View file

@ -87,6 +87,6 @@ class View
public static function getMetaImage()
{
return static::$metaImg ?: 'https://lbry.io/img/lbry-dark-1600x528.png';
return static::$metaImg ?: 'http://lbry.io/img/lbry-dark-1600x528.png';
}
}