Skip to content

Commit

Permalink
Merge pull request #6611 from nextcloud/fix/query-builder-reuse
Browse files Browse the repository at this point in the history
fix: Use new query builder
  • Loading branch information
juliusknorr authored Dec 18, 2024
2 parents f8bdc3e + 443c7f8 commit f6df55d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/BoardMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public function findAllByUser(string $userId, ?int $limit = null, ?int $offset =
}

// shared with user
$qb->resetQueryParts();
$qb = $this->db->getQueryBuilder();
$qb->select('b.id', 'title', 'owner', 'color', 'archived', 'deleted_at', 'last_modified')
//->selectAlias('1', 'shared')
->from('deck_boards', 'b')
Expand Down

0 comments on commit f6df55d

Please sign in to comment.