From dfd66beebfcca1670b0a9d389e8e3f8d2d08d2f2 Mon Sep 17 00:00:00 2001 From: Yassine Doghri Date: Wed, 21 Feb 2024 12:57:16 +0000 Subject: [PATCH] fix(import): set episodes as premium if podcast is set as premium by default --- modules/PodcastImport/Commands/PodcastImport.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/PodcastImport/Commands/PodcastImport.php b/modules/PodcastImport/Commands/PodcastImport.php index 1e5133ee..36c3d0bb 100644 --- a/modules/PodcastImport/Commands/PodcastImport.php +++ b/modules/PodcastImport/Commands/PodcastImport.php @@ -491,6 +491,7 @@ class PodcastImport extends BaseCommand 'type' => $item->itunes_episodeType->getValue(), 'is_blocked' => $item->itunes_block->getValue(), 'location' => $location, + 'is_premium' => $this->podcast->is_premium_by_default, 'published_at' => $item->pubDate->getValue(), ]);