$request = new Request(
'GET',
- "https://assets.woltlab.com/blacklist/{$nextDelta}"
+ "https://assets.woltlab.com/blacklist/{$nextDelta}",
+ [
+ 'accept-encoding' => 'gzip',
+ ]
);
try {
$response = $client->send($request);
// Fetch the index file to determine the oldest possible value that can be retrieved.
$request = new Request(
'GET',
- 'https://assets.woltlab.com/blacklist/index.json'
+ 'https://assets.woltlab.com/blacklist/index.json',
+ [
+ 'accept-encoding' => 'gzip',
+ ]
);
try {