From b02584ee609af1ad1b5680cc28208d113eb0410b Mon Sep 17 00:00:00 2001 From: Yassine Doghri <yassine@doghri.fr> Date: Thu, 5 Nov 2020 18:55:50 +0000 Subject: [PATCH] fix(open-graph): replace non existant episode description to podcast description in podcast page --- app/Views/podcast.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Views/podcast.php b/app/Views/podcast.php index fa25f6025f..6a3e5d567d 100644 --- a/app/Views/podcast.php +++ b/app/Views/podcast.php @@ -22,7 +22,7 @@ ->largeSize ?>" /> <meta property="og:image:height" content="<?= config('Images') ->largeSize ?>" /> - <meta property="og:description" content="<?= $episode->description ?>" /> + <meta property="og:description" content="<?= $podcast->description ?>" /> <meta name="twitter:card" content="summary_large_image" /> </head> -- GitLab