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