Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: dartcafe <github@dartcafe.de>
  • Loading branch information
dartcafe committed Jun 7, 2024
1 parent 838812a commit 46b5dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/ShareMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function findByPollUnreminded(int $pollId, bool $getDeleted = false): arr

$qb->select('*')
->from($this->getTableName())
->groupBy(self::TABLE . '.id')
->groupBy('id')
->where($qb->expr()->eq('poll_id', $qb->createNamedParameter($pollId, IQueryBuilder::PARAM_INT)))
->andWhere($qb->expr()->eq('reminder_sent', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT)));

Expand Down

0 comments on commit 46b5dd8

Please sign in to comment.