aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-04-09 15:11:19 -0400
committerLuke <luke.pulverenti@gmail.com>2016-04-09 15:11:19 -0400
commit4346b53679bb00f72279ccc684c7b92f68f9d14b (patch)
treee66dbdb68f17e264964efce238345ad8a72826f8 /MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
parent9ba905c284785561cb9b12143146f1913bbca63a (diff)
parentf9a9fd0a9f298f2b09cadd3e8eb4071c22a0aa08 (diff)
Merge pull request #1640 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs')
-rw-r--r--MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
index 2c0257c5f..13a06afc2 100644
--- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
+++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
@@ -251,7 +251,7 @@ namespace MediaBrowser.Server.Implementations.IO
/// <exception cref="System.ArgumentNullException">path</exception>
private static bool ContainsParentFolder(IEnumerable<string> lst, string path)
{
- if (string.IsNullOrEmpty(path))
+ if (string.IsNullOrWhiteSpace(path))
{
throw new ArgumentNullException("path");
}