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