diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-02-01 18:11:46 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-02-01 18:11:46 +0100 |
| commit | cabb824f2a095115ebbe79ca7fdfbcbab4db1e5f (patch) | |
| tree | a5a03ee540894e7a9cd12b328a2a09a00880619e | |
| parent | 2a1f6361a5fea4d00888446b736829e341982f35 (diff) | |
Fix build error
| -rw-r--r-- | Emby.Server.Implementations/Localization/LocalizationManager.cs | 4 |
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> |
