diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-09 10:24:44 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-09 10:24:44 -0500 |
| commit | 73f6b33a4cbe9b1310e6811ac0072da7b9ecb826 (patch) | |
| tree | 6dd3ec3d396a1b0b5d6dab4dd28a4dc67f12fa2f /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 5591e05fdbe586abbde6964ed75b523732e3e573 (diff) | |
| parent | 6fc8a8c04d4296e3d6e11ad43f684dae9dfe8282 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -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 cc3ec5c2a..a69b423ac 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -313,7 +313,7 @@ namespace MediaBrowser.Controller.Entities var path = Path; // non file-system entries will not have a path - if (string.IsNullOrEmpty(path)) + if (this.LocationType != LocationType.FileSystem || string.IsNullOrEmpty(path)) { return new ItemResolveArgs(ConfigurationManager.ApplicationPaths) { |
