add one year tolerance to movie lookups

This commit is contained in:
Luke Pulverenti
2014-07-04 15:17:22 -04:00
parent 385e52c9eb
commit e2b3320f80
7 changed files with 46 additions and 9 deletions

View File

@@ -91,7 +91,7 @@ namespace MediaBrowser.Model.Dlna
if (StringHelper.EqualsIgnoreCase(Protocol, "hls"))
{
return string.Format("{0}/videos/{1}/stream.m3u8?{2}", baseUrl, ItemId, dlnaCommand);
return string.Format("{0}/videos/{1}/master.m3u8?{2}", baseUrl, ItemId, dlnaCommand);
}
return string.Format("{0}/videos/{1}/stream{2}?{3}", baseUrl, ItemId, extension, dlnaCommand);