mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
increase the movie metadata pagination limit to 100
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ from db.models import TamilBlasterMovie
|
||||
ia = Cinemagoer()
|
||||
|
||||
|
||||
async def get_movies_meta(catalog: str, skip: int = 0, limit: int = 25):
|
||||
async def get_movies_meta(catalog: str, skip: int = 0, limit: int = 100):
|
||||
movies_meta = []
|
||||
movies = await TamilBlasterMovie.find(TamilBlasterMovie.catalog == catalog).sort("-created_at").skip(skip).limit(
|
||||
limit).to_list()
|
||||
|
||||
Reference in New Issue
Block a user