Skip to content

Commit

Permalink
[ADN] Add episode ID to listing
Browse files Browse the repository at this point in the history
  • Loading branch information
AnimeDL committed Apr 21, 2024
1 parent 24191c9 commit d507135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,12 @@ export default class AnimationDigitalNetwork implements ServiceClass {
specials.push(...special);
episodeIndex--;
} else {
console.info(` [E${episode.shortNumber}] ${episode.number} - ${episode.name}`);
console.info(` (${episode.id}) [E${episode.shortNumber}] ${episode.number} - ${episode.name}`);
}
episodeIndex++;
}
for (const special of specials) {
console.info(` [${special.shortNumber}] ${special.number} - ${special.name}`);
console.info(` (${special.id}) [${special.shortNumber}] ${special.number} - ${special.name}`);
}
show.value.videos.push(...specials);
return { isOk: true, value: show.value };
Expand Down

0 comments on commit d507135

Please sign in to comment.