mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Made the album search 10x faster. We are now loading the images in a seperate call. #32
This commit is contained in:
parent
4e1a668d3c
commit
9211f3db4f
3 changed files with 12 additions and 4 deletions
|
@ -80,6 +80,7 @@ namespace PlexRequests.UI.Modules
|
|||
Get["movie/{searchTerm}"] = parameters => SearchMovie((string)parameters.searchTerm);
|
||||
Get["tv/{searchTerm}"] = parameters => SearchTvShow((string)parameters.searchTerm);
|
||||
Get["music/{searchTerm}"] = parameters => SearchMusic((string)parameters.searchTerm);
|
||||
Get["music/coverArt/{id}"] = p => GetMusicBrainzCoverArt((string)p.id);
|
||||
|
||||
Get["movie/upcoming"] = parameters => UpcomingMovies();
|
||||
Get["movie/playing"] = parameters => CurrentlyPlayingMovies();
|
||||
|
@ -168,7 +169,6 @@ namespace PlexRequests.UI.Modules
|
|||
var model = new List<SearchMusicViewModel>();
|
||||
foreach (var a in releases)
|
||||
{
|
||||
var img = GetMusicBrainzCoverArt(a.id);
|
||||
model.Add(new SearchMusicViewModel
|
||||
{
|
||||
Title = a.title,
|
||||
|
@ -177,7 +177,6 @@ namespace PlexRequests.UI.Modules
|
|||
Overview = a.disambiguation,
|
||||
ReleaseDate = a.date,
|
||||
TrackCount = a.TrackCount,
|
||||
CoverArtUrl = img,
|
||||
ReleaseType = a.status,
|
||||
Country = a.country
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue