Skip RSS URL generation if it's not a channel.
This commit is contained in:
parent
e7bed19391
commit
cd9337f2d4
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ function ClaimMenuList(props: Props) {
|
|||
}
|
||||
|
||||
const shareUrl: string = generateShareUrl(SHARE_DOMAIN, uri);
|
||||
const rssUrl: string = generateRssUrl(URL, uri);
|
||||
const rssUrl: string = isChannel ? generateRssUrl(URL, uri) : '';
|
||||
const isCollectionClaim = claim && claim.value_type === 'collection';
|
||||
// $FlowFixMe
|
||||
const isPlayable =
|
||||
|
|
Loading…
Reference in a new issue