diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-08 17:09:06 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-08 17:09:06 -0500 |
| commit | 3c9b0a1fb6ce1f209b69cdf6b3f5e1604203e215 (patch) | |
| tree | ca5735fbf6b3f1fe92feaedf7bdf8c9d1d859f09 /MediaBrowser.Controller/Library | |
| parent | 91b5a8101f60efd824b2111b52955208fb705e08 (diff) | |
move prescan tasks to postscan
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ItemResolveArgs.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ItemResolveArgs.cs b/MediaBrowser.Controller/Library/ItemResolveArgs.cs index e296e0f18..c34180eb6 100644 --- a/MediaBrowser.Controller/Library/ItemResolveArgs.cs +++ b/MediaBrowser.Controller/Library/ItemResolveArgs.cs @@ -130,7 +130,7 @@ namespace MediaBrowser.Controller.Library { get { - return IsDirectory && Path.Equals(_appPaths.RootFolderPath, StringComparison.OrdinalIgnoreCase); + return IsDirectory && string.Equals(Path, _appPaths.RootFolderPath, StringComparison.OrdinalIgnoreCase); } } |
