From af05d4e51a2f11516324c960a7430efe66b4a228 Mon Sep 17 00:00:00 2001 From: Benjamin Takats Date: Wed, 25 Jan 2023 16:36:23 +0100 Subject: [PATCH] new feed --- app/Console/Commands/Feed/ReadAndSyncPodcastFeeds.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/Feed/ReadAndSyncPodcastFeeds.php b/app/Console/Commands/Feed/ReadAndSyncPodcastFeeds.php index 02a8af59..0e78be9d 100644 --- a/app/Console/Commands/Feed/ReadAndSyncPodcastFeeds.php +++ b/app/Console/Commands/Feed/ReadAndSyncPodcastFeeds.php @@ -61,6 +61,7 @@ class ReadAndSyncPodcastFeeds extends Command foreach ($feedIds as $feedId) { $podcast = $client->podcasts->byFeedId($feedId) ->json(); + info('Importing: '.$podcast->feed->title); $importPodcast = Podcast::query() ->updateOrCreate(['guid' => $podcast->feed->podcastGuid], [ 'title' => $podcast->feed->title,