diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-09-23 02:21:54 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-09-23 02:21:54 -0400 |
| commit | 8b096ccc0e87883655bcf9ea1f9e22e9961450d3 (patch) | |
| tree | 79c4ed4a9e5f7155ae641e33c71cf9060a99c6ac /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | bfb2f64ea480a35c973362f014e1caee7918b713 (diff) | |
stub out storage for new path substitution
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 6e0a33620..30e0f3ee7 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -2121,11 +2121,11 @@ namespace MediaBrowser.Controller.Entities return hasChanges; } - protected static string GetMappedPath(string path, LocationType locationType) + protected static string GetMappedPath(BaseItem item, string path, LocationType locationType) { if (locationType == LocationType.FileSystem || locationType == LocationType.Offline) { - return LibraryManager.GetPathAfterNetworkSubstitution(path); + return LibraryManager.GetPathAfterNetworkSubstitution(path, item); } return path; |
