mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed a issue with the proxy and also fixed build
This commit is contained in:
parent
91e1db06f2
commit
a1e0042966
6 changed files with 33 additions and 7 deletions
|
@ -51,7 +51,9 @@ namespace Ombi.Core.Engine.V2
|
|||
langCode = await DefaultLanguageCode(langCode);
|
||||
var collections = await MovieApi.GetCollection(langCode, collectionId);
|
||||
|
||||
return await ProcessCollection(collections);
|
||||
var c = await ProcessCollection(collections);
|
||||
c.Collection = c.Collection.OrderBy(x => x.ReleaseDate).ToList();
|
||||
return c;
|
||||
}
|
||||
|
||||
public async Task<int> GetTvDbId(int theMovieDbId)
|
||||
|
@ -208,6 +210,7 @@ namespace Ombi.Core.Engine.V2
|
|||
mapped.EmbyUrl = movie.EmbyUrl;
|
||||
mapped.Subscribed = movie.Subscribed;
|
||||
mapped.ShowSubscribe = movie.ShowSubscribe;
|
||||
mapped.ReleaseDate = movie.ReleaseDate;
|
||||
}
|
||||
return viewMovie;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue