show file page even if blacklistedOutpoints is empty

This commit is contained in:
Sean Yesmunt 2021-02-25 14:14:21 -05:00
parent c67b92cfa4
commit 3fba7f0797

View file

@ -13,7 +13,7 @@ import { formatLbryUrlForWeb } from 'util/url';
type Props = {
isResolvingUri: boolean,
resolveUri: string => void,
resolveUri: (string) => void,
isSubscribed: boolean,
uri: string,
claim: StreamClaim,
@ -39,6 +39,7 @@ function ShowPage(props: Props) {
isSubscribed,
claimIsPending,
} = props;
const signingChannel = claim && claim.signing_channel;
const canonicalUrl = claim && claim.canonical_url;
const claimExists = claim !== null && claim !== undefined;
@ -91,11 +92,13 @@ function ShowPage(props: Props) {
);
} else if (claim.name.length && claim.name[0] === '@') {
innerContent = <ChannelPage uri={uri} location={location} />;
} else if (claim && blackListedOutpoints) {
} else if (claim) {
let isClaimBlackListed = false;
isClaimBlackListed = blackListedOutpoints.some(
outpoint =>
isClaimBlackListed =
blackListedOutpoints &&
blackListedOutpoints.some(
(outpoint) =>
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
);