Skip to content

Commit a7cedce

Browse files
committed
Prevent short-circuiting when REST API is not available when on local environment
1 parent b7c4475 commit a7cedce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plugins/optimization-detective/optimization.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ static function ( string $output, ?int $phase ): string {
8282
function od_maybe_add_template_output_buffer_filter(): void {
8383
if (
8484
! od_can_optimize_response() ||
85-
od_is_rest_api_unavailable() ||
85+
( od_is_rest_api_unavailable() && ( wp_get_environment_type() !== 'local' || class_exists( 'Test_OD_Optimization' ) ) ) ||
8686
isset( $_GET['optimization_detective_disabled'] ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended
87-
8887
) {
8988
return;
9089
}

0 commit comments

Comments
 (0)