omit auth_token for file/list_filtered and file/list_blocked

This commit is contained in:
Sean Yesmunt 2020-11-11 15:12:47 -05:00
parent 9371b3181f
commit 2a9d04b2ef
4 changed files with 16 additions and 6 deletions

8
dist/bundle.es.js vendored
View file

@ -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() {

8
dist/bundle.js vendored
View file

@ -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() {

View file

@ -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);
};
}

View file

@ -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);
};
}