create collections from movies page

This commit is contained in:
Luke Pulverenti
2014-06-03 23:34:36 -04:00
parent 71351344d7
commit 3640f62086
16 changed files with 182 additions and 31 deletions

View File

@@ -128,6 +128,11 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
request.Host = options.Host;
}
if (!string.IsNullOrEmpty(options.Referer))
{
request.Referer = options.Referer;
}
#if !__MonoCS__
if (options.EnableKeepAlive)
{