mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-17 15:59:56 +03:00
#901 Fixed condition type
This commit is contained in:
parent
850360dd2b
commit
5485efc9ae
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class DomainRepository extends EntityRepository implements DomainRepositoryInter
|
|||
public function findDomainsWithout(?string $excludedAuthority = null): array
|
||||
{
|
||||
$qb = $this->createQueryBuilder('d');
|
||||
$qb->join(ShortUrl::class, 's', Join::WITH, $qb->expr()->eq('s.domain', 'd'))
|
||||
$qb->join(ShortUrl::class, 's', Join::WITH, 's.domain = d')
|
||||
->orderBy('d.authority', 'ASC');
|
||||
|
||||
if ($excludedAuthority !== null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue