fix: claim_search
rename param
This commit is contained in:
parent
eecbbfb121
commit
2d2755e914
3 changed files with 3 additions and 3 deletions
2
dist/bundle.es.js
vendored
2
dist/bundle.es.js
vendored
|
@ -1559,7 +1559,7 @@ const doCheckSubscription = (subscriptionUri, shouldNotify) => (dispatch, getSta
|
||||||
channel_name: subscriptionUri,
|
channel_name: subscriptionUri,
|
||||||
page: 1,
|
page: 1,
|
||||||
page_size: PAGE_SIZE,
|
page_size: PAGE_SIZE,
|
||||||
valid_channel_signatures: true,
|
valid_channel_signature: true,
|
||||||
order_by: ['release_time']
|
order_by: ['release_time']
|
||||||
}).then(result => {
|
}).then(result => {
|
||||||
const {
|
const {
|
||||||
|
|
2
dist/bundle.js
vendored
2
dist/bundle.js
vendored
|
@ -2554,7 +2554,7 @@ var doCheckSubscription = function doCheckSubscription(subscriptionUri, shouldNo
|
||||||
channel_name: subscriptionUri,
|
channel_name: subscriptionUri,
|
||||||
page: 1,
|
page: 1,
|
||||||
page_size: constants_claim__WEBPACK_IMPORTED_MODULE_0__["PAGE_SIZE"],
|
page_size: constants_claim__WEBPACK_IMPORTED_MODULE_0__["PAGE_SIZE"],
|
||||||
valid_channel_signatures: true,
|
valid_channel_signature: true,
|
||||||
order_by: ['release_time']
|
order_by: ['release_time']
|
||||||
}).then(function (result) {
|
}).then(function (result) {
|
||||||
var claimsInChannel = result.items; // may happen if subscribed to an abandoned channel or an empty channel
|
var claimsInChannel = result.items; // may happen if subscribed to an abandoned channel or an empty channel
|
||||||
|
|
|
@ -161,7 +161,7 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool
|
||||||
channel_name: subscriptionUri,
|
channel_name: subscriptionUri,
|
||||||
page: 1,
|
page: 1,
|
||||||
page_size: PAGE_SIZE,
|
page_size: PAGE_SIZE,
|
||||||
valid_channel_signatures: true,
|
valid_channel_signature: true,
|
||||||
order_by: ['release_time'],
|
order_by: ['release_time'],
|
||||||
}).then(result => {
|
}).then(result => {
|
||||||
const { items: claimsInChannel } = result;
|
const { items: claimsInChannel } = result;
|
||||||
|
|
Loading…
Reference in a new issue