display upcoming episodes

This commit is contained in:
Luke Pulverenti 2013-10-24 13:49:51 -04:00
parent 146c7ac4bf
commit 85abf90610
1 changed files with 1 additions and 10 deletions

View File

@ -138,16 +138,7 @@ namespace MediaBrowser.Providers.Savers
return Path.ChangeExtension(item.Path, ".xml");
}
var filename = GetXmlFilename(item);
return Path.Combine(item.MetaLocation, filename);
}
private static string GetXmlFilename(BaseItem item)
{
const string filename = "movie.xml";
return Path.Combine(item.MetaLocation, filename);
return Path.Combine(item.MetaLocation, "movie.xml");
}
}
}