Skip to content

Commit

Permalink
fix: ensureJellyfinIdType leave as tmdb
Browse files Browse the repository at this point in the history
After looking at NFO's generated by  TinyMediaManager it used `tmdb` for The Movie DB.
Also verify manually identifying a show as AniList has jellyfin store `AniList` and for AniDB it stroes `AniDB`.

Rather annoying they are not all lowercase :(
  • Loading branch information
sjorge committed Dec 15, 2024
1 parent e033ad7 commit 61157b7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/lib/nfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ function ensureJellyfinIdType(type: string): string {
case "anilist":
jellyfinCompatibleType = "AniList";
break;
case "tmdb":
jellyfinCompatibleType = "Tmdb";
break;
default:
jellyfinCompatibleType = type;
break;
Expand Down

0 comments on commit 61157b7

Please sign in to comment.