fixed server side indexer issue

This commit is contained in:
kay.one 2013-05-02 22:24:52 -07:00
commit 1877f70403
15 changed files with 104 additions and 63 deletions

View file

@ -15,7 +15,7 @@ namespace NzbDrone.Api.Frontend
path = path.Trim(Path.DirectorySeparatorChar).ToLower();
return Path.Combine("ui", path);
return Path.Combine(Directory.GetCurrentDirectory(), "ui", path);
}
}
}