update movie db user agent
This commit is contained in:
parent
55e6db3361
commit
94fdb07925
|
@ -163,8 +163,7 @@ namespace MediaBrowser.Providers.Movies
|
||||||
{
|
{
|
||||||
Url = string.Format(TmdbConfigUrl, ApiKey),
|
Url = string.Format(TmdbConfigUrl, ApiKey),
|
||||||
CancellationToken = cancellationToken,
|
CancellationToken = cancellationToken,
|
||||||
AcceptHeader = AcceptHeader,
|
AcceptHeader = AcceptHeader
|
||||||
UserAgent = "Emby/" + _appHost.ApplicationVersion
|
|
||||||
|
|
||||||
}).ConfigureAwait(false))
|
}).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
|
@ -391,6 +390,8 @@ namespace MediaBrowser.Providers.Movies
|
||||||
options.ResourcePool = MovieDbResourcePool;
|
options.ResourcePool = MovieDbResourcePool;
|
||||||
_lastRequestTicks = DateTime.UtcNow.Ticks;
|
_lastRequestTicks = DateTime.UtcNow.Ticks;
|
||||||
|
|
||||||
|
options.UserAgent = "Emby/" + _appHost.ApplicationVersion;
|
||||||
|
|
||||||
return await _httpClient.Get(options).ConfigureAwait(false);
|
return await _httpClient.Get(options).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user