mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
Added: Improved load times of very large libraries again (around x5)
This commit is contained in:
@@ -44,14 +44,14 @@ namespace NzbDrone.Api.Movie
|
||||
|
||||
MovieResource movie = null;
|
||||
|
||||
if (model.Movie != null)
|
||||
/*if (model.Movie != null)
|
||||
{
|
||||
model.Movie.LazyLoad();
|
||||
//model.Movie.LazyLoad();
|
||||
if (model.Movie.Value != null)
|
||||
{
|
||||
//movie = model.Movie.Value.ToResource();
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
return new MovieFileResource
|
||||
{
|
||||
|
@@ -132,8 +132,8 @@ namespace NzbDrone.Api.Movie
|
||||
|
||||
var resource = movies.ToResource();
|
||||
MapCoversToLocal(resource);
|
||||
FetchAndLinkMovieStatistics(resource);
|
||||
PopulateAlternateTitles(resource);
|
||||
//FetchAndLinkMovieStatistics(resource);
|
||||
//PopulateAlternateTitles(resource);
|
||||
|
||||
return resource;
|
||||
}
|
||||
|
@@ -70,7 +70,8 @@ namespace NzbDrone.Core.Tv
|
||||
return "";
|
||||
}
|
||||
//Well what about Path = Null?
|
||||
return new DirectoryInfo(Path).Name;
|
||||
//return new DirectoryInfo(Path).Name;
|
||||
return Path;
|
||||
}
|
||||
|
||||
public bool IsAvailable(int delay = 0)
|
||||
|
Reference in New Issue
Block a user