Fixed db issue

pull/843/head
Jamie.Rees 8 years ago
parent 6300c98bb7
commit 5822505189

@ -51,15 +51,19 @@ namespace Ombi.Store
{
get
{
if (!string.IsNullOrEmpty(_currentPath))
{
return _currentPath;
}
if (File.Exists(OldPath))
{
_currentPath = OldPath;
return _currentPath;
}
if (File.Exists(NewCurrentPath))
{
_currentPath = NewCurrentPath;
}
return _currentPath;
}

Loading…
Cancel
Save