mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-21 23:32:27 +00:00
fixed tvdblib xml cache path
This commit is contained in:
parent
4d4a8198eb
commit
2c0469f76e
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ public class TvDbController : ITvDbController
|
|||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue