From 7db1e90e0197bafba4428e77c97e2211672fb15c Mon Sep 17 00:00:00 2001 From: Pablo Ogando Ferreira Date: Fri, 8 Mar 2024 13:08:20 +0100 Subject: [PATCH] TTK-26902 fix channelID --- Command/ImportJobsFromYouTubeDownloadCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/ImportJobsFromYouTubeDownloadCommand.php b/Command/ImportJobsFromYouTubeDownloadCommand.php index 4b66156..c0bc321 100644 --- a/Command/ImportJobsFromYouTubeDownloadCommand.php +++ b/Command/ImportJobsFromYouTubeDownloadCommand.php @@ -60,7 +60,7 @@ protected function configure(): void protected function execute(InputInterface $input, OutputInterface $output): int { - $channel = $input->getOption('channel'); + $this->channelId = $channel = $input->getOption('channel'); $limit = (int) $input->getOption('limit') ?? null; $this->ensureYouTubeAccountExists($input);