fixed the load of failed entries in indexers

This commit is contained in:
pushrbx 2023-05-01 11:33:18 +01:00
parent 6732de1188
commit 61af2e0420
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ class AnimeIndexer extends Command
$this->info("Info: AnimeIndexer uses seanbreckenridge/mal-id-cache fetch available MAL IDs and updates/indexes them\n\n");
if ($failed && Storage::exists('indexer/indexer_anime.save')) {
if ($failed && Storage::exists('indexer/indexer_anime.failed')) {
$this->ids = $this->loadFailedMalIds();
}

View File

@ -69,7 +69,7 @@ class MangaIndexer extends Command
$this->info("Info: MangaIndexer uses seanbreckenridge/mal-id-cache fetch available MAL IDs and updates/indexes them\n\n");
if ($failed && Storage::exists('indexer/indexer_manga.save')) {
if ($failed && Storage::exists('indexer/indexer_manga.failed')) {
$this->ids = $this->loadFailedMalIds();
}