mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-24 11:06:56 +00:00
fixed themoviedb search returning no results
This commit is contained in:
@@ -902,7 +902,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
{
|
||||
var locationType = item.LocationType;
|
||||
|
||||
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
|
||||
if (locationType != LocationType.Remote && locationType != LocationType.Virtual)
|
||||
{
|
||||
dto.Path = GetMappedPath(item.Path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user