don't pass streamTypes to homepage following section
so the following section shows all file types
This commit is contained in:
parent
0083a29231
commit
27b1101d12
2 changed files with 2 additions and 12 deletions
|
@ -151,6 +151,7 @@ export default function GetHomePageRowData(
|
||||||
link: `/$/${PAGES.CHANNELS_FOLLOWING}`,
|
link: `/$/${PAGES.CHANNELS_FOLLOWING}`,
|
||||||
icon: ICONS.SUBSCRIBE,
|
icon: ICONS.SUBSCRIBE,
|
||||||
options: {
|
options: {
|
||||||
|
streamTypes: null,
|
||||||
orderBy: ['release_time'],
|
orderBy: ['release_time'],
|
||||||
releaseTime:
|
releaseTime:
|
||||||
subscribedChannels.length > 20
|
subscribedChannels.length > 20
|
||||||
|
@ -232,16 +233,6 @@ export default function GetHomePageRowData(
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const LATEST_FROM_LBRYCAST = {
|
|
||||||
title: __('Latest From @lbrycast'),
|
|
||||||
link: `/@lbrycast:4`,
|
|
||||||
options: {
|
|
||||||
orderBy: ['release_time'],
|
|
||||||
pageSize: getPageSize(4),
|
|
||||||
channelIds: ['4c29f8b013adea4d5cca1861fb2161d5089613ea'],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
if (showPersonalizedChannels) rowData.push(RECENT_FROM_FOLLOWING);
|
if (showPersonalizedChannels) rowData.push(RECENT_FROM_FOLLOWING);
|
||||||
if (showPersonalizedTags && !showIndividualTags) rowData.push(TRENDING_FOR_TAGS);
|
if (showPersonalizedTags && !showIndividualTags) rowData.push(TRENDING_FOR_TAGS);
|
||||||
if (showPersonalizedTags && showIndividualTags) {
|
if (showPersonalizedTags && showIndividualTags) {
|
||||||
|
@ -259,7 +250,6 @@ export default function GetHomePageRowData(
|
||||||
// rowData.push(TRENDING_ON_LBRY);
|
// rowData.push(TRENDING_ON_LBRY);
|
||||||
|
|
||||||
rowData.push(LATEST_FROM_LBRY);
|
rowData.push(LATEST_FROM_LBRY);
|
||||||
rowData.push(LATEST_FROM_LBRYCAST);
|
|
||||||
|
|
||||||
if (!showPersonalizedChannels) rowData.push(TOP_CHANNELS);
|
if (!showPersonalizedChannels) rowData.push(TOP_CHANNELS);
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ function ClaimTilesDiscover(props: Props) {
|
||||||
channel_ids: channelIds || [],
|
channel_ids: channelIds || [],
|
||||||
not_channel_ids: [],
|
not_channel_ids: [],
|
||||||
order_by: orderBy || ['trending_group', 'trending_mixed'],
|
order_by: orderBy || ['trending_group', 'trending_mixed'],
|
||||||
stream_types: streamTypes || SIMPLE_SITE ? [CS.FILE_VIDEO, CS.FILE_AUDIO] : undefined,
|
stream_types: streamTypes === null ? undefined : SIMPLE_SITE ? [CS.FILE_VIDEO, CS.FILE_AUDIO] : undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!ENABLE_NO_SOURCE_CLAIMS && (!claimType || claimType === 'stream')) {
|
if (!ENABLE_NO_SOURCE_CLAIMS && (!claimType || claimType === 'stream')) {
|
||||||
|
|
Loading…
Reference in a new issue