diff options
| -rw-r--r-- | MediaBrowser.Server.Implementations/Configuration/ServerConfigurationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Configuration/ServerConfigurationManager.cs b/MediaBrowser.Server.Implementations/Configuration/ServerConfigurationManager.cs index 21a6f4869..96946bdab 100644 --- a/MediaBrowser.Server.Implementations/Configuration/ServerConfigurationManager.cs +++ b/MediaBrowser.Server.Implementations/Configuration/ServerConfigurationManager.cs @@ -86,7 +86,7 @@ namespace MediaBrowser.Server.Implementations.Configuration var newIbnPath = newConfig.ItemsByNamePath; - if (!string.IsNullOrEmpty(newIbnPath) + if (!string.IsNullOrWhiteSpace(newIbnPath) && !string.Equals(Configuration.ItemsByNamePath ?? string.Empty, newIbnPath)) { // Validate |
