Skip to content

Commit 6210370

Browse files
Sascha Nowakdkd-kaehm
authored andcommitted
[BUGFIX] Cast result offset to integer
1 parent ef62b69 commit 6210370

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Classes/Search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public function getResultsPerPage(): int
241241
public function getResultOffset(): int
242242
{
243243
// @extensionScannerIgnoreLine
244-
return $this->response->response->start;
244+
return (int)$this->response->response->start;
245245
}
246246

247247
/**

0 commit comments

Comments
 (0)