aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-02-01 18:11:46 +0100
committerBond_009 <bond.009@outlook.com>2019-02-01 18:11:46 +0100
commitcabb824f2a095115ebbe79ca7fdfbcbab4db1e5f (patch)
treea5a03ee540894e7a9cd12b328a2a09a00880619e
parent2a1f6361a5fea4d00888446b736829e341982f35 (diff)
Fix build error
-rw-r--r--Emby.Server.Implementations/Localization/LocalizationManager.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Localization/LocalizationManager.cs b/Emby.Server.Implementations/Localization/LocalizationManager.cs
index 3a7052595..c3a7e1e9a 100644
--- a/Emby.Server.Implementations/Localization/LocalizationManager.cs
+++ b/Emby.Server.Implementations/Localization/LocalizationManager.cs
@@ -62,7 +62,7 @@ namespace Emby.Server.Implementations.Localization
{
const string ratingsResource = "Emby.Server.Implementations.Ratings.";
- Directory.CreateDirectory(localizationPath);
+ Directory.CreateDirectory(LocalizationPath);
var existingFiles = GetRatingsFiles(LocalizationPath).Select(Path.GetFileName);
@@ -269,8 +269,6 @@ namespace Emby.Server.Implementations.Localization
}
return GetRatings(countryCode) ?? GetRatings("us");
-
- return ratings;
}
/// <summary>