[go: up one dir, main page]

Skip to content

Commit

Permalink
Fix NovelUpdates Covers (#880)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyd1 authored Jan 8, 2024
1 parent a83b4b1 commit df8da48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sources/en/novelupdates.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ const parseNovelAndChapters = async novelUrl => {

novel.novelName = loadedCheerio('.seriestitlenu').text();

novel.novelCover = loadedCheerio('.seriesimg > img').attr('src');
novel.novelCover =
loadedCheerio('.seriesimg > img').attr('src') ||
loadedCheerio('.serieseditimg > img').attr('src');

novel.author = loadedCheerio('#showauthors').text().trim();
novel.genre = loadedCheerio('#seriesgenre')
Expand Down

0 comments on commit df8da48

Please sign in to comment.