diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 2c5709e..3217494 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -3142,7 +3142,7 @@ function doImportChannel(certificate) { }; } -function doFetchChannelListMine(page = 1, pageSize = 99999) { +function doFetchChannelListMine(page = 1, pageSize = 99999, resolve = false) { return dispatch => { dispatch({ type: FETCH_CHANNEL_LIST_STARTED @@ -3155,7 +3155,7 @@ function doFetchChannelListMine(page = 1, pageSize = 99999) { }); }; - lbryProxy.channel_list({ page, page_size: pageSize }).then(callback); + lbryProxy.channel_list({ page, page_size: pageSize, resolve }).then(callback); }; } diff --git a/src/redux/actions/claims.js b/src/redux/actions/claims.js index 2857097..e9a7a5b 100644 --- a/src/redux/actions/claims.js +++ b/src/redux/actions/claims.js @@ -385,7 +385,7 @@ export function doImportChannel(certificate: string) { }; } -export function doFetchChannelListMine(page: number = 1, pageSize: number = 99999) { +export function doFetchChannelListMine(page: number = 1, pageSize: number = 99999, resolve: boolean = false) { return (dispatch: Dispatch) => { dispatch({ type: ACTIONS.FETCH_CHANNEL_LIST_STARTED, @@ -398,7 +398,7 @@ export function doFetchChannelListMine(page: number = 1, pageSize: number = 9999 }); }; - Lbry.channel_list({ page, page_size: pageSize }).then(callback); + Lbry.channel_list({ page, page_size: pageSize, resolve }).then(callback); }; }