mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
fixes #254 - Can't turn off custom ImagesByName folder
This commit is contained in:
@@ -84,9 +84,10 @@ namespace MediaBrowser.Server.Implementations.Configuration
|
|||||||
{
|
{
|
||||||
var newConfig = (ServerConfiguration) newConfiguration;
|
var newConfig = (ServerConfiguration) newConfiguration;
|
||||||
|
|
||||||
var newIbnPath = newConfig.ItemsByNamePath ?? string.Empty;
|
var newIbnPath = newConfig.ItemsByNamePath;
|
||||||
|
|
||||||
if (!string.Equals(Configuration.ItemsByNamePath ?? string.Empty, newIbnPath))
|
if (!string.IsNullOrEmpty(newIbnPath)
|
||||||
|
&& !string.Equals(Configuration.ItemsByNamePath ?? string.Empty, newIbnPath))
|
||||||
{
|
{
|
||||||
// Validate
|
// Validate
|
||||||
if (!Directory.Exists(newIbnPath))
|
if (!Directory.Exists(newIbnPath))
|
||||||
|
|||||||
Reference in New Issue
Block a user