From 4f9b96b401a9a97fd86634ed87b2ec3034079238 Mon Sep 17 00:00:00 2001 From: Aldarien Date: Sun, 18 Jun 2023 23:44:08 -0400 Subject: [PATCH] Fix --- app/common/Command/Watch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/Command/Watch.php b/app/common/Command/Watch.php index 87393d1..1c66843 100644 --- a/app/common/Command/Watch.php +++ b/app/common/Command/Watch.php @@ -33,7 +33,7 @@ class Watch extends Command $io->info("Start: {$current->format('Y-m-d H:i:s')}"); while(true) { $io->info('Running Update'); - $this->runUpdate(); + $this->runUpdate($io); $current = $this->updateTime($period); $wait = $current->add($period); $io->text("Waiting until {$wait->format('Y-m-d H:i:s')}");