diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2019-01-10 17:03:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 17:03:03 +0100 |
commit | 03663530edf0512cc337518d794bd3c71ebdde96 (patch) | |
tree | 8d86ef334fc955af8c098ca400796549ba8e444d /src/Wallabag/ApiBundle/Repository | |
parent | ca990600da23344b9735834bb22e8658b195a55b (diff) | |
parent | 3a2d4cf9fda87760c86320a7f8a5041d1d4256c6 (diff) | |
download | wallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.gz wallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.zst wallabag-03663530edf0512cc337518d794bd3c71ebdde96.zip |
Merge pull request #3831 from wallabag/fix/api-bad-client-id
Cast client id to avoid PG error
Diffstat (limited to 'src/Wallabag/ApiBundle/Repository')
-rw-r--r-- | src/Wallabag/ApiBundle/Repository/ClientRepository.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Wallabag/ApiBundle/Repository/ClientRepository.php b/src/Wallabag/ApiBundle/Repository/ClientRepository.php new file mode 100644 index 00000000..fc14262e --- /dev/null +++ b/src/Wallabag/ApiBundle/Repository/ClientRepository.php | |||
@@ -0,0 +1,19 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\ApiBundle\Repository; | ||
4 | |||
5 | use Doctrine\ORM\EntityRepository; | ||
6 | |||
7 | class ClientRepository extends EntityRepository | ||
8 | { | ||
9 | public function findOneBy(array $criteria, array $orderBy = null) | ||
10 | { | ||
11 | if (!empty($criteria['id'])) { | ||
12 | // cast client id to be an integer to avoid postgres error: | ||
13 | // "invalid input syntax for integer" | ||
14 | $criteria['id'] = (int) $criteria['id']; | ||
15 | } | ||
16 | |||
17 | return parent::findOneBy($criteria, $orderBy); | ||
18 | } | ||
19 | } | ||