Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/a0e61ee67f56a6f2735c3f3e8f97e3da794c0c1a/MediaBrowser.Providers/TV/TvExternalIds.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Providers/TV/TvExternalIds.cs

64 lines
1.6 KiB

using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Providers.TV.TheTVDB;
namespace MediaBrowser.Providers.TV
{
public class Zap2ItExternalId : IExternalId
{
public string Name => "Zap2It";
public string Key => MetadataProviders.Zap2It.ToString();
public string UrlFormatString => "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}";
public bool Supports(IHasProviderIds item)
{
return item is Series;
}
}
public class TvdbExternalId : IExternalId
{
public string Name => "TheTVDB";
public string Key => MetadataProviders.Tvdb.ToString();
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=series&id={0}";
public bool Supports(IHasProviderIds item)
{
return item is Series;
}
}
public class TvdbSeasonExternalId : IExternalId
{
public string Name => "TheTVDB";
public string Key => MetadataProviders.Tvdb.ToString();
public string UrlFormatString => null;
public bool Supports(IHasProviderIds item)
{
return item is Season;
}
}
public class TvdbEpisodeExternalId : IExternalId
{
public string Name => "TheTVDB";
public string Key => MetadataProviders.Tvdb.ToString();
public string UrlFormatString => TvdbUtils.TvdbBaseUrl + "?tab=episode&id={0}";
public bool Supports(IHasProviderIds item)
{
return item is Episode;
}
}
}