mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
stub out storage for new path substitution
This commit is contained in:
@@ -1509,7 +1509,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
}
|
||||
}
|
||||
|
||||
private string GetMappedPath(IHasMetadata item)
|
||||
private string GetMappedPath(BaseItem item)
|
||||
{
|
||||
var path = item.Path;
|
||||
|
||||
@@ -1517,7 +1517,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
|
||||
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
|
||||
{
|
||||
path = _libraryManager.GetPathAfterNetworkSubstitution(path);
|
||||
path = _libraryManager.GetPathAfterNetworkSubstitution(path, item);
|
||||
}
|
||||
|
||||
return path;
|
||||
|
||||
Reference in New Issue
Block a user