Skip to content

Commit

Permalink
Fix search:results tag when offset and paginate are set
Browse files Browse the repository at this point in the history
  • Loading branch information
nopticon committed Jan 24, 2025
1 parent 85265e6 commit e31a242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tags/Concerns/GetsQueryResults.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected function queryPaginationFriendlyOffset($query, $offset)
$offsetIds = (clone $query)
->limit($offset)
->get('id')
->map->id()
->map->id
->all();

$query->whereNotin('id', $offsetIds);
Expand Down

0 comments on commit e31a242

Please sign in to comment.