mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
Increase the results for the discover page
This commit is contained in:
parent
2f5dc4a498
commit
0ce93071f1
14 changed files with 197 additions and 32 deletions
|
@ -32,7 +32,12 @@ namespace Ombi.Core.Engine
|
|||
OmbiSettings = ombiSettings;
|
||||
_subscriptionRepository = sub;
|
||||
}
|
||||
|
||||
private int _resultLimit;
|
||||
public int ResultLimit
|
||||
{
|
||||
get => _resultLimit > 0 ? _resultLimit : 10;
|
||||
set => _resultLimit = value;
|
||||
}
|
||||
protected IRequestServiceMain RequestService { get; }
|
||||
protected IMovieRequestRepository MovieRepository => RequestService.MovieRequestService;
|
||||
protected ITvRequestRepository TvRepository => RequestService.TvRequestService;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue