Merge pull request #5243 from nextcloud/backport/5227/stable18

[stable18] Fix uninitialised variable
This commit is contained in:
Morris Jobke 2020-10-12 16:56:52 +02:00 committed by GitHub
commit 2cb2845fb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ To create a mapper, inherit from the mapper base class and call the parent const
->setMaxResults($limit)
->setFirstResult($offset);
return $this->findEntities($sql);
return $this->findEntities($qb);
}