Fix: channel page search limit
This commit is contained in:
parent
93b1de8ed9
commit
43c2e9e0ed
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ function ChannelContent(props: Props) {
|
||||||
} else {
|
} else {
|
||||||
getResults(
|
getResults(
|
||||||
`${LIGHTHOUSE_URL}?s=${encodeURIComponent(searchQuery)}&channel_id=${encodeURIComponent(claimId)}${
|
`${LIGHTHOUSE_URL}?s=${encodeURIComponent(searchQuery)}&channel_id=${encodeURIComponent(claimId)}${
|
||||||
!showMature ? '&nsfw=false' : ''
|
!showMature ? '&nsfw=false&size=999&from=0' : ''
|
||||||
}`
|
}`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue