From e87de47d9d542b30712c65acea7aac989b3e50ef Mon Sep 17 00:00:00 2001 From: Mitch Downey Date: Tue, 9 Jan 2024 16:12:35 -0600 Subject: [PATCH 1/2] Use original imageUrl instead of shrunkImageUrl on /podcast pages in meta tags --- pages/podcast/[podcastId].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/podcast/[podcastId].tsx b/pages/podcast/[podcastId].tsx index eaa925f5..85a88ffe 100644 --- a/pages/podcast/[podcastId].tsx +++ b/pages/podcast/[podcastId].tsx @@ -213,7 +213,7 @@ export default function Podcast({ currentUrl: `${PV.Config.WEB_BASE_URL}${PV.RoutePaths.web.podcast}/${serverPodcast.id}`, description: serverPodcast.description, imageAlt: podcastTitle, - imageUrl: serverPodcast.shrunkImageUrl, + imageUrl: serverPodcast.imageUrl, title: podcastTitle } From b0d7b21b82a269913f2220d60fad5be603724c46 Mon Sep 17 00:00:00 2001 From: Mitch Downey Date: Tue, 9 Jan 2024 16:12:49 -0600 Subject: [PATCH 2/2] Bump to version 4.15.11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 64ecfffa..b6f6d7db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "podverse-web", - "version": "4.15.10", + "version": "4.15.11", "description": "Web app for the Podverse podcast clip sharing ecosystem", "repository": { "type": "git",