Enable limitation by default as it increases performance

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-10-27 14:45:53 +02:00
Родитель 483c3a0c8e
Коммит 82e20cc783
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -394,8 +394,8 @@ class Config {
return hash_equals($hash, substr($ticket, $lastColon + 1));
}
public function getGridVideosLimit(): string {
return $this->config->getAppValue('spreed', 'grid_videos_limit', '0');
public function getGridVideosLimit(): int {
return (int) $this->config->getAppValue('spreed', 'grid_videos_limit', '19'); // 5*4 - self
}
public function getGridVideosLimitEnforced(): bool {