Skip to content

Commit 685c493

Browse files
author
Hai Zheng
committed
v7.9.1-a3: * 🐞**Image Optimize** Fixed a fatal error when the WordPress HTTP fallback could not download an image.
1 parent 662483b commit 685c493

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

litespeed-cache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: LiteSpeed Cache
44
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
55
* Description: High-performance page caching and site optimization from LiteSpeed
6-
* Version: 7.9.1-a2
6+
* Version: 7.9.1-a3
77
* Author: LiteSpeed Technologies
88
* Author URI: https://www.litespeedtech.com
99
* License: GPLv3
@@ -35,7 +35,7 @@
3535
return;
3636
}
3737

38-
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.9.1-a2' );
38+
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.9.1-a3' );
3939

4040
! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR );
4141
! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU

readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
260260
= 8.0 - Coming soon 2026 =
261261
* 🌱**OptiMax** OptiMax to maximize the page score.
262262
* **Core** Aligned the runtime PHP and WordPress guards with the published minimum requirements.
263+
* 🐞**Image Optimize** Fixed a fatal error when the WordPress HTTP fallback could not download an image.
263264

264265
= 7.9 - Aug 5 2026 =
265266
* **Cloud** Changed Health service to run asynchronously, resuming through WP cron when the cloud defers the request.

src/img-optm-pull.trait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,8 @@ public function pull( $manual = false ) {
565565
$request_response['success'] = true;
566566
$request_response['status_code'] = $wp_response['response']['code'];
567567
$request_response['body'] = $wp_response['body'];
568+
self::debug( 'response code [code] ' . $wp_response['response']['code'] . ' [url] ' . $req['url'] );
568569
}
569-
self::debug( 'response code [code] ' . $wp_response['response']['code'] . ' [url] ' . $req['url'] );
570570

571571
$request_response = (object) $request_response;
572572

0 commit comments

Comments
 (0)