Commit b1aa5de0 authored by Mark Harding's avatar Mark Harding

(fix): do not set paging token for subscriptions if no result

parent c33e5724
No related merge requests found
Pipeline #95308960 running with stages
......@@ -69,6 +69,11 @@ class Repository
try {
$rows = $this->client->request($query);
if (!$rows) {
return $response;
}
foreach ($rows as $row) {
$user = new User($row['column1']);
$response[] = $user;
......
Please register or to comment