Fix crash
This commit is contained in:
parent
75df2a5f13
commit
a4bb276608
1 changed files with 2 additions and 2 deletions
|
@ -41,10 +41,10 @@ export function getLivestreamUris(
|
|||
|
||||
if (channelIds && channelIds.length > 0) {
|
||||
// $FlowFixMe
|
||||
values = values.filter((v) => channelIds.includes(v.creatorId) && Boolean(v.claimUri));
|
||||
values = values.filter((v) => channelIds.includes(v?.creatorId) && Boolean(v?.claimUri));
|
||||
} else {
|
||||
// $FlowFixMe
|
||||
values = values.filter((v) => Boolean(v.claimUri));
|
||||
values = values.filter((v) => Boolean(v?.claimUri));
|
||||
}
|
||||
|
||||
if (excludedChannelIds) {
|
||||
|
|
Loading…
Reference in a new issue