Merge pull request #617 from zypA13510/revert-487-patch-1

fix: download speed is 0 on certain platform
This commit is contained in:
sstidl 2024-05-18 22:18:59 +02:00 committed by GitHub
commit 3034bf2b2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,11 +53,7 @@ function sendHeaders()
$chunks = getChunkCount();
// Generate data
if (function_exists('random_bytes')) {
$data = random_bytes(1048576);
} else {
$data = openssl_random_pseudo_bytes(1048576);
}
$data = openssl_random_pseudo_bytes(1048576);
// Deliver chunks of 1048576 bytes
sendHeaders();