Skip to content

Commit

Permalink
ya eblan
Browse files Browse the repository at this point in the history
Исправлен server error из-за списка друзей. Он подгружает абсолютно все группы и всех друзей, на которые подписан человек и из-за этого серверу очень плохо. Забыл, бывает. Теперь он подгружает только 10 такого
  • Loading branch information
mrilyew committed Nov 12, 2023
1 parent 5bb6e09 commit 1632d54
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Web/Models/Entities/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,8 @@ function getBroadcastList(string $filter = "friends", bool $shuffle = false)
$entityIds[] = $_rel->model == "openvk\\Web\\Models\\Entities\\Club" ? $_rel->target * -1 : $_rel->target;
}

$entityIds = array_slice($entityIds, 0, 10);

if($shuffle) {
$shuffleSeed = openssl_random_pseudo_bytes(6);
$shuffleSeed = hexdec(bin2hex($shuffleSeed));
Expand Down

0 comments on commit 1632d54

Please sign in to comment.