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

update movie db user agent

pull/702/head
Luke Pulverenti 9 years ago
parent 636c7cc3ab
commit 468a498768

@ -163,8 +163,7 @@ namespace MediaBrowser.Providers.Movies
{
Url = string.Format(TmdbConfigUrl, ApiKey),
CancellationToken = cancellationToken,
AcceptHeader = AcceptHeader,
UserAgent = "Emby/" + _appHost.ApplicationVersion
AcceptHeader = AcceptHeader
}).ConfigureAwait(false))
{
@ -391,6 +390,8 @@ namespace MediaBrowser.Providers.Movies
options.ResourcePool = MovieDbResourcePool;
_lastRequestTicks = DateTime.UtcNow.Ticks;
options.UserAgent = "Emby/" + _appHost.ApplicationVersion;
return await _httpClient.Get(options).ConfigureAwait(false);
}

Loading…
Cancel
Save