Fix ordering videos by uploaded to yt and decrease vids shown

This commit is contained in:
2018-02-24 23:42:42 -05:00
parent 9ac93a540e
commit e140cae317
2 changed files with 6 additions and 5 deletions

View File

@ -28,7 +28,7 @@ namespace YTManager.Controllers {
private readonly MediaDB db;
// Maximum number of channels to return per query.
private readonly int max_per_query = 20;
private readonly int max_per_query = 10;
// Constructor to fetch the db context.
public ChannelsController(MediaDB context) => db = context;