Fix conditions where the ! was swallowed in #726

This commit is contained in:
Erwin de Haan
2019-01-30 01:02:17 +01:00
parent c8cb908004
commit f8aff0c51d
2 changed files with 3 additions and 3 deletions

View File

@@ -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);
}