-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support anidb id in Season rather than Series #40
base: master
Are you sure you want to change the base?
Conversation
Anidb ids map to a specific season of a show rather than an entire series
@@ -9,7 +9,7 @@ namespace Jellyfin.Plugin.AniDB.Providers.AniDB | |||
public class AniDbExternalId : IExternalId | |||
{ | |||
public bool Supports(IHasProviderIds item) | |||
=> item is Series || item is Movie; | |||
=> item is Series || item is Season || item is Movie; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This only adds the ability to add the providerid to seasons.
You also need to add something in AniDbSeasonProvider.cs
to actually add the providerid.
I can do it when I have time, if you want me to.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not entirely sure what needs to be done, so if you could do it I would appreciate it :D.
is there any plan to implement this? |
Converted to draft, as it sounds like more code is needed for this to be useful |
Anidb ids map to a specific season of a show rather than an entire series