From f8aff0c51d04420967da0e4adf1834515b1059f8 Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Wed, 30 Jan 2019 01:02:17 +0100 Subject: [PATCH] Fix conditions where the ! was swallowed in #726 --- MediaBrowser.Api/EnvironmentService.cs | 4 ++-- MediaBrowser.Api/Library/LibraryStructureService.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MediaBrowser.Api/EnvironmentService.cs b/MediaBrowser.Api/EnvironmentService.cs index 907c44fe1d..bdd7a8f8f9 100644 --- a/MediaBrowser.Api/EnvironmentService.cs +++ b/MediaBrowser.Api/EnvironmentService.cs @@ -144,7 +144,7 @@ namespace MediaBrowser.Api } else { - if (Directory.Exists(request.Path)) + if (!Directory.Exists(request.Path)) { throw new FileNotFoundException("File not found", request.Path); } @@ -153,7 +153,7 @@ namespace MediaBrowser.Api else { - if (!File.Exists(request.Path) && Directory.Exists(request.Path)) + if (!File.Exists(request.Path) && !Directory.Exists(request.Path)) { throw new FileNotFoundException("Path not found", request.Path); } diff --git a/MediaBrowser.Api/Library/LibraryStructureService.cs b/MediaBrowser.Api/Library/LibraryStructureService.cs index c95a068051..d6bcf7878b 100644 --- a/MediaBrowser.Api/Library/LibraryStructureService.cs +++ b/MediaBrowser.Api/Library/LibraryStructureService.cs @@ -255,7 +255,7 @@ namespace MediaBrowser.Api.Library var currentPath = Path.Combine(rootFolderPath, request.Name); var newPath = Path.Combine(rootFolderPath, request.NewName); - if (Directory.Exists(currentPath)) + if (!Directory.Exists(currentPath)) { throw new FileNotFoundException("The media collection does not exist"); }