Fixed: Issue loading settings on some systems

This commit is contained in:
Mark McDowall 2016-09-20 22:07:54 -07:00
parent e6288148ad
commit e76fb8c90b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ namespace NzbDrone.Api.REST
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
return GetType().Name.ToLowerInvariant().Replace("resource", "");
}
}
}