From 342778bac3c684328d72633961df1a2ebdc1330e Mon Sep 17 00:00:00 2001
From: Ola Hneini <ola.hneini@gmail.com>
Date: Tue, 22 Mar 2022 10:57:32 +0000
Subject: [PATCH] fix: restore default podcast icon on public website

---
 themes/cp_app/podcast/_partials/sidebar.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/themes/cp_app/podcast/_partials/sidebar.php b/themes/cp_app/podcast/_partials/sidebar.php
index 67aae12e29..a72baa2cb1 100644
--- a/themes/cp_app/podcast/_partials/sidebar.php
+++ b/themes/cp_app/podcast/_partials/sidebar.php
@@ -15,7 +15,11 @@
             <?php if ($socialPlatform->is_visible): ?>
                 <?= anchor(
             esc($socialPlatform->link_url),
-            icon($socialPlatform->type . '/' . esc($socialPlatform->slug)),
+            icon(
+                esc($socialPlatform->slug),
+                '',
+                $socialPlatform->type
+            ),
             [
                 'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
                 'target' => '_blank',
@@ -38,7 +42,11 @@
                 <?php if ($podcastingPlatform->is_visible): ?>
                     <?= anchor(
             esc($podcastingPlatform->link_url),
-            icon($podcastingPlatform->type . '/' . $podcastingPlatform->slug),
+            icon(
+                $podcastingPlatform->slug,
+                '',
+                $podcastingPlatform->type
+            ),
             [
                 'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
                 'target' => '_blank',
-- 
GitLab