run build
This commit is contained in:
parent
cfbf86e95d
commit
9b6912e51f
2 changed files with 2 additions and 11 deletions
dist
10
dist/bundle.es.js
vendored
10
dist/bundle.es.js
vendored
|
@ -2000,11 +2000,7 @@ function doResolveUris(uris, returnCachedClaims = false) {
|
||||||
result.stream = uriResolveInfo;
|
result.stream = uriResolveInfo;
|
||||||
if (uriResolveInfo.signing_channel) {
|
if (uriResolveInfo.signing_channel) {
|
||||||
result.channel = uriResolveInfo.signing_channel;
|
result.channel = uriResolveInfo.signing_channel;
|
||||||
<<<<<<< HEAD
|
|
||||||
result.claimsInChannel = uriResolveInfo.signing_channel.meta && uriResolveInfo.signing_channel.meta.claims_in_channel || 0;
|
result.claimsInChannel = uriResolveInfo.signing_channel.meta && uriResolveInfo.signing_channel.meta.claims_in_channel || 0;
|
||||||
=======
|
|
||||||
result.claimsInChannel = uriResolveInfo.meta && uriResolveInfo.meta.claims_in_channel || 0;
|
|
||||||
>>>>>>> add tags
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// $FlowFixMe
|
// $FlowFixMe
|
||||||
|
@ -2125,11 +2121,7 @@ function doFetchClaimsByChannel(uri, page = 1) {
|
||||||
|
|
||||||
lbryProxy.claim_search({
|
lbryProxy.claim_search({
|
||||||
channel: uri,
|
channel: uri,
|
||||||
<<<<<<< HEAD
|
valid_channel_signature: true,
|
||||||
valid_channel_signatures: true,
|
|
||||||
=======
|
|
||||||
is_controlling: true,
|
|
||||||
>>>>>>> add tags
|
|
||||||
page: page || 1,
|
page: page || 1,
|
||||||
order_by: ['release_time']
|
order_by: ['release_time']
|
||||||
}).then(result => {
|
}).then(result => {
|
||||||
|
|
3
dist/flow-typed/Claim.js
vendored
3
dist/flow-typed/Claim.js
vendored
|
@ -3,8 +3,7 @@
|
||||||
declare type Claim = StreamClaim | ChannelClaim;
|
declare type Claim = StreamClaim | ChannelClaim;
|
||||||
|
|
||||||
declare type ChannelClaim = GenericClaim & {
|
declare type ChannelClaim = GenericClaim & {
|
||||||
is_channel_signature_valid?: boolean, // we may have signed channels in the future, fixes some flow issues for now.
|
is_channel_signature_valid?: boolean, // we may have signed channels in the future
|
||||||
signing_channel?: ChannelClaim,
|
|
||||||
value: ChannelMetadata,
|
value: ChannelMetadata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue