Fix: channel page search limit

This commit is contained in:
Thomas Zarebczan 2020-10-27 14:51:05 -04:00
parent 93b1de8ed9
commit 43c2e9e0ed
No known key found for this signature in database
GPG key ID: D505010BDB4364BC

View file

@ -82,7 +82,7 @@ function ChannelContent(props: Props) {
} else {
getResults(
`${LIGHTHOUSE_URL}?s=${encodeURIComponent(searchQuery)}&channel_id=${encodeURIComponent(claimId)}${
!showMature ? '&nsfw=false' : ''
!showMature ? '&nsfw=false&size=999&from=0' : ''
}`
);
}