omit auth_token for file/list_filtered and file/list_blocked
This commit is contained in:
parent
9371b3181f
commit
2a9d04b2ef
4 changed files with 16 additions and 6 deletions
8
dist/bundle.es.js
vendored
8
dist/bundle.es.js
vendored
|
@ -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
8
dist/bundle.js
vendored
|
@ -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() {
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue