This commit is contained in:
Default
2025-04-29 22:04:02 +08:00
parent 84d91f8af5
commit 085a15f42f
2 changed files with 4 additions and 4 deletions

View File

@@ -26,9 +26,9 @@ class Scheduler extends ZwScheduler
{
$this->intSlice = 3;
$this->intStartNSourceId = config('crawler.novel_start_n_source_id');
$this->intStartNSourceId = (int) config('crawler.novel_start_n_source_id');
$this->intEndNSourceId = config('crawler.novel_end_n_source_id');
$this->intEndNSourceId = (int) config('crawler.novel_end_n_source_id');
}
/**

View File

@@ -21,9 +21,9 @@ class Scheduler extends ZwScheduler
{
$this->intSlice = 1;
$this->intStartNSourceId = config('crawler.novel_start_n_source_id');
$this->intStartNSourceId = (int) config('crawler.novel_start_n_source_id');
$this->intEndNSourceId = config('crawler.novel_end_n_source_id');
$this->intEndNSourceId = (int) config('crawler.novel_end_n_source_id');
}
/**