Skip to content

Commit

Permalink
fix(CustomEpisodeScraper): Use episode-config for episode loading
Browse files Browse the repository at this point in the history
We accidentally used TV show config instead.
  • Loading branch information
bugwelle committed Apr 7, 2024
1 parent 2e83025 commit b633c50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -10,7 +10,8 @@
### Fixed

- IMDb: Episode's overviews are scraped again (#1724)
- fernsehserien.de: Fix scraping of episode's thumbnails
- fernsehserien.de: Fix scraping of episode's thumbnails.
- TV Show: The custom episode scraper may not have loaded details from IMDb.
- Possible crash when clicking on empty episode thumbnails.

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/scrapers/tv_show/custom/CustomEpisodeScrapeJob.cpp
Expand Up @@ -46,7 +46,7 @@ void CustomEpisodeScrapeJob::onTmdbLoaded(EpisodeScrapeJob* job)
copyDetailsToEpisode(episode(), job->episode(), job->config().details);
job->deleteLater();

const QStringList scrapersToUse = m_customConfig.scraperForShowDetails.values();
const QStringList scrapersToUse = m_customConfig.scraperForEpisodeDetails.values();
const bool loadImdb = episode().imdbId().isValid() && scrapersToUse.contains(ImdbTv::ID);

m_loadCounter = 1;
Expand Down

0 comments on commit b633c50

Please sign in to comment.