Skip to content

Commit ed58151

Browse files
committed
Replace remaining use of get_timestamp
1 parent 384fa53 commit ed58151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/optimization-detective/class-od-url-metrics-group.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public function is_complete(): bool {
229229
}
230230
$current_time = microtime( true );
231231
foreach ( $this->url_metrics as $url_metric ) {
232-
if ( $current_time > $url_metric->get_timestamp() + $this->freshness_ttl ) {
232+
if ( $current_time > $url_metric->timestamp + $this->freshness_ttl ) {
233233
return false;
234234
}
235235
}

0 commit comments

Comments
 (0)