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

Don't use AppendFormat

pull/6870/head
cvium 3 years ago
parent 96ea865681
commit d8c3b8e7f8

@ -95,12 +95,12 @@ namespace MediaBrowser.Providers.Plugins.Omdb
episodeSearchInfo.SeriesProviderIds.TryGetValue(MetadataProvider.Imdb.ToString(), out imdbId);
if (searchInfo.IndexNumber.HasValue)
{
urlQuery.AppendFormat(CultureInfo.InvariantCulture, "&Episode={0}", searchInfo.IndexNumber);
urlQuery.Append("&Episode=").Append(searchInfo.IndexNumber.Value);
}
if (searchInfo.ParentIndexNumber.HasValue)
{
urlQuery.AppendFormat(CultureInfo.InvariantCulture, "&Season={0}", searchInfo.ParentIndexNumber);
urlQuery.Append("&Season=").Append(searchInfo.ParentIndexNumber.Value);
}
}
@ -118,8 +118,7 @@ namespace MediaBrowser.Providers.Plugins.Omdb
if (year.HasValue)
{
urlQuery.Append("&y=")
.Append(year);
urlQuery.Append("&y=").Append(year);
}
// &s means search and returns a list of results as opposed to t

Loading…
Cancel
Save