1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Search library by TheTVDB, TV Maze or IMDB IDs

This commit is contained in:
Bogdan
2023-06-21 05:29:15 +03:00
committed by GitHub
parent 0a05781aca
commit 377e5f7fc7
3 changed files with 39 additions and 0 deletions
@@ -18,6 +18,9 @@ function createCleanSeriesSelector() {
sortTitle,
images,
alternateTitles = [],
tvdbId,
tvMazeId,
imdbId,
tags = []
} = series;
@@ -27,6 +30,9 @@ function createCleanSeriesSelector() {
sortTitle,
images,
alternateTitles,
tvdbId,
tvMazeId,
imdbId,
firstCharacter: title.charAt(0).toLowerCase(),
tags: tags.reduce((acc, id) => {
const matchingTag = allTags.find((tag) => tag.id === id);