Skip to content

Commit 5ecfcf2

Browse files
Fix float comparison for intersection ratio
Co-authored-by: Weston Ruter <[email protected]>
1 parent c22701f commit 5ecfcf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/embed-optimizer/class-embed-optimizer-tag-visitor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function __invoke( OD_Tag_Visitor_Context $context ): bool {
174174

175175
foreach ( $preconnect_hrefs as $preconnect_href ) {
176176
foreach ( $context->url_metric_group_collection as $group ) {
177-
if ( $group->get_element_max_intersection_ratio( $embed_wrapper_xpath ) <= 0 ) {
177+
if ( ! ( $group->get_element_max_intersection_ratio( $embed_wrapper_xpath ) > 0.0 ) ) {
178178
continue;
179179
}
180180

0 commit comments

Comments
 (0)