diff --git a/Jellyfin.Plugin.ThePornDB/ExternalIds/JAV.cs b/Jellyfin.Plugin.ThePornDB/ExternalIds/JAV.cs deleted file mode 100644 index 1f8913f..0000000 --- a/Jellyfin.Plugin.ThePornDB/ExternalIds/JAV.cs +++ /dev/null @@ -1,28 +0,0 @@ -using MediaBrowser.Controller.Entities.Movies; -using MediaBrowser.Controller.Providers; -using MediaBrowser.Model.Entities; - -#if __EMBY__ -#else -using MediaBrowser.Model.Providers; -#endif - -namespace ThePornDB -{ - public class JAV : IExternalId - { -#if __EMBY__ - public string Name => Plugin.Instance.Name + " JAV"; -#else - public string ProviderName => Plugin.Instance.Name + " JAV"; - - public ExternalIdMediaType? Type => ExternalIdMediaType.Movie; -#endif - - public string Key => Plugin.Instance.Name + "JAV"; - - public string UrlFormatString => Consts.JAVURL; - - public bool Supports(IHasProviderIds item) => item is Movie; - } -} diff --git a/Jellyfin.Plugin.ThePornDB/ExternalIds/Movies.cs b/Jellyfin.Plugin.ThePornDB/ExternalIds/Movies.cs deleted file mode 100644 index fdee628..0000000 --- a/Jellyfin.Plugin.ThePornDB/ExternalIds/Movies.cs +++ /dev/null @@ -1,28 +0,0 @@ -using MediaBrowser.Controller.Entities.Movies; -using MediaBrowser.Controller.Providers; -using MediaBrowser.Model.Entities; - -#if __EMBY__ -#else -using MediaBrowser.Model.Providers; -#endif - -namespace ThePornDB -{ - public class Movies : IExternalId - { -#if __EMBY__ - public string Name => Plugin.Instance.Name + " Movie"; -#else - public string ProviderName => Plugin.Instance.Name + " Movie"; - - public ExternalIdMediaType? Type => ExternalIdMediaType.Movie; -#endif - - public string Key => Plugin.Instance.Name + "Movie"; - - public string UrlFormatString => Consts.MovieURL; - - public bool Supports(IHasProviderIds item) => item is Movie; - } -} diff --git a/Jellyfin.Plugin.ThePornDB/ExternalIds/Scenes.cs b/Jellyfin.Plugin.ThePornDB/ExternalIds/Scenes.cs index 6c6efcd..c015e2f 100644 --- a/Jellyfin.Plugin.ThePornDB/ExternalIds/Scenes.cs +++ b/Jellyfin.Plugin.ThePornDB/ExternalIds/Scenes.cs @@ -12,7 +12,7 @@ namespace ThePornDB public class Scenes : IExternalId { #if __EMBY__ - public string Name => Plugin.Instance.Name + " Scene"; + public string Name => Plugin.Instance.Name; #else public string ProviderName => Plugin.Instance.Name;