We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d0cf28 commit d444222Copy full SHA for d444222
class-object-type-google-sheet.php
@@ -355,9 +355,9 @@ public function query( $args ) {
355
$search_params = $this->process_filter_groups( $args );
356
357
if ( ! empty( $search_params ) ) {
358
- $results = array_filter( $results, function ( $var ) use ( $search_params ) {
+ $results = array_values( array_filter( $results, function ( $var ) use ( $search_params ) {
359
return $this->search( $var, $search_params );
360
- } );
+ } ) );
361
}
362
363
$orderby = rgar( $ordering, 'orderby' );
0 commit comments