diff --git a/view/Response.class.php b/view/Response.class.php index f93e771b..35cbdb7f 100644 --- a/view/Response.class.php +++ b/view/Response.class.php @@ -61,7 +61,7 @@ class Response public static function getMetaImages() { - return static::$metaImages ?: [Request::getHostAndProto() . '/img/lbry-green-meta-1200x900.png']; + return static::$metaImages ?: [Request::getHostAndProto() . '/img/og-image.png']; } public static function setMetaTitle($title) @@ -371,15 +371,14 @@ class Response ); } - public static function addPostRenderCallback( $cb ) + public static function addPostRenderCallback($cb) { array_push(static::$PostRenderCallbacks, $cb); } public static function invokePostRenderCallbacks() { - foreach(static::$PostRenderCallbacks as &$cb ) - { + foreach (static::$PostRenderCallbacks as &$cb) { $cb(); } } diff --git a/web/img/og-image.png b/web/img/og-image.png index 6f6fc143..1d7c0f16 100644 Binary files a/web/img/og-image.png and b/web/img/og-image.png differ