diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 5274999..cb9f256 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -617,7 +617,9 @@ function doFetchBlackListedOutpoints() { }); }; - Lbryio.call('file', 'list_blocked').then(success, failure); + Lbryio.call('file', 'list_blocked', { + auth_token: '' + }).then(success, failure); }; } function doBlackListedOutpointsSubscribe() { @@ -668,7 +670,9 @@ function doFetchFilteredOutpoints() { }); }; - Lbryio.call('file', 'list_filtered').then(success, failure); + Lbryio.call('file', 'list_filtered', { + auth_token: '' + }).then(success, failure); }; } function doFilteredOutpointsSubscribe() { diff --git a/dist/bundle.js b/dist/bundle.js index 14e1a7b..6351c77 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -3272,7 +3272,9 @@ function doFetchBlackListedOutpoints() { }); }; - lbryio__WEBPACK_IMPORTED_MODULE_0__["default"].call('file', 'list_blocked').then(success, failure); + lbryio__WEBPACK_IMPORTED_MODULE_0__["default"].call('file', 'list_blocked', { + auth_token: '' + }).then(success, failure); }; } function doBlackListedOutpointsSubscribe() { @@ -3347,7 +3349,9 @@ function doFetchFilteredOutpoints() { }); }; - lbryio__WEBPACK_IMPORTED_MODULE_0__["default"].call('file', 'list_filtered').then(success, failure); + lbryio__WEBPACK_IMPORTED_MODULE_0__["default"].call('file', 'list_filtered', { + auth_token: '' + }).then(success, failure); }; } function doFilteredOutpointsSubscribe() { diff --git a/src/redux/actions/blacklist.js b/src/redux/actions/blacklist.js index 838565f..dbe7e94 100644 --- a/src/redux/actions/blacklist.js +++ b/src/redux/actions/blacklist.js @@ -38,7 +38,9 @@ export function doFetchBlackListedOutpoints() { }); }; - Lbryio.call('file', 'list_blocked').then(success, failure); + Lbryio.call('file', 'list_blocked', { + auth_token: '', + }).then(success, failure); }; } diff --git a/src/redux/actions/filtered.js b/src/redux/actions/filtered.js index 1b8313b..ab34701 100644 --- a/src/redux/actions/filtered.js +++ b/src/redux/actions/filtered.js @@ -35,7 +35,7 @@ export function doFetchFilteredOutpoints() { }); }; - Lbryio.call('file', 'list_filtered').then(success, failure); + Lbryio.call('file', 'list_filtered', { auth_token: '' }).then(success, failure); }; }