diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-05-30 16:55:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-30 16:55:57 -0400 |
| commit | 6c5fe7935b5c684526117de7472a6c34903aad44 (patch) | |
| tree | b91f6642d01828f32120650129905c6d53a328bb /MediaBrowser.Controller | |
| parent | 9f094322f7b84668c74c95e64d25e1ced70bb194 (diff) | |
| parent | d8ec7109ab5ec561254465e1664974049cc556d7 (diff) | |
Merge pull request #2675 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index c5422fce9c..3d46cc9aaf 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -1733,7 +1733,7 @@ namespace MediaBrowser.Controller.Entities private BaseItem FindLinkedChild(LinkedChild info) { - if (!string.IsNullOrEmpty(info.Path)) + if (!string.IsNullOrWhiteSpace(info.Path)) { var itemByPath = LibraryManager.FindByPath(info.Path, null); |
