1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-22 15:56:58 +00:00

fixed tvdblib xml cache path

This commit is contained in:
kay.one 2010-09-24 00:24:05 -07:00
parent 4d4a8198eb
commit 2c0469f76e

View file

@ -13,7 +13,7 @@ namespace NzbDrone.Core.Controllers
public TvDbController()
{
_handler = new TvdbHandler(new XmlCacheProvider(Path.Combine(Main.AppPath, @"\tvdbcache.xml")), TvDbApiKey);
_handler = new TvdbHandler(new XmlCacheProvider(Path.Combine(Main.AppPath, @"cache\tvdbcache.xml")), TvDbApiKey);
}
#region ITvDbController Members