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

fix identify by imdb id

release-10.1.0
Luke Pulverenti 9 years ago
parent 98cfbd99ad
commit 316d8d3125

@ -762,7 +762,6 @@ namespace MediaBrowser.Providers.Manager
var resultList = new List<RemoteSearchResult>();
var foundProviderIds = new Dictionary<Tuple<string, string>, RemoteSearchResult>();
var foundTitleYearStrings = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
foreach (var provider in providers)
{

@ -74,7 +74,6 @@ namespace MediaBrowser.Providers.Omdb
episodeSearchInfo.SeriesProviderIds.TryGetValue(MetadataProviders.Imdb.ToString(), out imdbId);
}
var name = searchInfo.Name;
var year = searchInfo.Year;
@ -107,6 +106,7 @@ namespace MediaBrowser.Providers.Omdb
else
{
url += "&i=" + imdbId;
isSearch = false;
}
if (type == "episode")

Loading…
Cancel
Save