From f85595ac192ad6c7fe4769a9bd7cd44daac28764 Mon Sep 17 00:00:00 2001 From: Sayem Chowdhury Date: Tue, 20 Apr 2021 23:34:15 +0600 Subject: [PATCH] disable livestream --- src/api/api.ts | 36 ++++++------------------------------ 1 file changed, 6 insertions(+), 30 deletions(-) diff --git a/src/api/api.ts b/src/api/api.ts index 6c76682..70be46f 100644 --- a/src/api/api.ts +++ b/src/api/api.ts @@ -130,7 +130,7 @@ export const getChannelList = async (): Promise => request({} * @param {Number} NB number of items to fetch * @param {Number} START start index */ -export const getShowInfo = (SHOW_ID: string, NB = 100, START = 0): Promise => +export const getShowInfo = (SHOW_ID: string, NB = 1000, START = 0): Promise => request( { SHOW_ID, @@ -148,10 +148,10 @@ export const getPlaylistChannel = async (page: string): Promise