diff --git a/client/src/app/shared/shared-main/video-channel/video-channel.service.ts b/client/src/app/shared/shared-main/video-channel/video-channel.service.ts index 9a42fcc52..68c53741f 100644 --- a/client/src/app/shared/shared-main/video-channel/video-channel.service.ts +++ b/client/src/app/shared/shared-main/video-channel/video-channel.service.ts @@ -57,7 +57,7 @@ export class VideoChannelService { }): Observable> { const { account, componentPagination, withStats = false, sort, search } = options - const defaultCount = this.serverService.getHTMLConfig().videoChannels.maxPerUser + const defaultCount = Math.min(this.serverService.getHTMLConfig().videoChannels.maxPerUser, 100) // 100 is the max count on server side const pagination = componentPagination ? this.restService.componentToRestPagination(componentPagination)