aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-26 13:30:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-26 13:30:15 -0400
commit37c27a26e90b7eff62cec9e2b6a6c003e79fcbe4 (patch)
treed8c628a1f1ffeb33ba021158822eeffa74928f4e /MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs
parentd56fa09ccc5e1a5f9440645330ce337273fa3bd7 (diff)
added sync job database
Diffstat (limited to 'MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs b/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs
index 05de4d65a..1f993f0d4 100644
--- a/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs
+++ b/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs
@@ -235,7 +235,9 @@ namespace MediaBrowser.Server.Implementations.Localization
.Where(i => i != null)
.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
- var countryCode = Path.GetFileNameWithoutExtension(file).Split('-').Last();
+ var countryCode = _fileSystem.GetFileNameWithoutExtension(file)
+ .Split('-')
+ .Last();
_allParentalRatings.TryAdd(countryCode, dict);
}