You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please use the 👍 reaction to show that you are affected by the same issue.
Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
Subscribe to receive notifications on status change and new comments.
Describe the bug
In the log file there is the following exception multiple times:
{"reqId":"Zqx6PuhDcZXxSJhl4Tld","level":2,"time":"2024-12-10T10:37:11+00:00","remoteAddr":"x.x.x.x","user":"x","app":"no app in context","method":"GET","url":"/nextcloud/ocs/v2.php/apps/deck/api/v1.0/overview/upcoming","message":"Using where() on non-empty WHERE part, please verify it is intentional to not call andWhere() or orWhere() instead. Otherwise consider creating a new query builder object or call resetQueryPart('where') first.","version":"30.0.1.2","exception":{"Exception":"Doctrine\DBAL\Query\QueryException","Message":"Using where() on non-empty WHERE part, please verify it is intentional to not call andWhere() or orWhere() instead. Otherwise consider creating a new query builder object or call resetQueryPart('where') first.","Code":0,"Trace":[{"file":"/var/www/nextcloud/apps/deck/lib/Db/BoardMapper.php","line":218,"function":"where","class":"OC\DB\QueryBuilder\QueryBuilder","type":"->"}
To Reproduce
Steps to reproduce the behavior:
Go to Deck
Create a board
Create a card
Click card details
Add any text
Expected behavior
The program should not throw an exception
Client details:
OS: Windows
Browser Firefox
Version 133
Device: Laptop
Server details
Operating system: Debian
Web server: Apache
Database: Postgres
PHP version: 8.2.26
Nextcloud version: 30.0.1
Where did you install Nextcloud from: Source
To fix this you need to change ->where after an innerjoin to andWhere. This must be because innerjoin adds its own where clause.
The text was updated successfully, but these errors were encountered:
How to use GitHub
Describe the bug
In the log file there is the following exception multiple times:
{"reqId":"Zqx6PuhDcZXxSJhl4Tld","level":2,"time":"2024-12-10T10:37:11+00:00","remoteAddr":"x.x.x.x","user":"x","app":"no app in context","method":"GET","url":"/nextcloud/ocs/v2.php/apps/deck/api/v1.0/overview/upcoming","message":"Using where() on non-empty WHERE part, please verify it is intentional to not call andWhere() or orWhere() instead. Otherwise consider creating a new query builder object or call resetQueryPart('where') first.","version":"30.0.1.2","exception":{"Exception":"Doctrine\DBAL\Query\QueryException","Message":"Using where() on non-empty WHERE part, please verify it is intentional to not call andWhere() or orWhere() instead. Otherwise consider creating a new query builder object or call resetQueryPart('where') first.","Code":0,"Trace":[{"file":"/var/www/nextcloud/apps/deck/lib/Db/BoardMapper.php","line":218,"function":"where","class":"OC\DB\QueryBuilder\QueryBuilder","type":"->"}
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The program should not throw an exception
Client details:
Server details
To fix this you need to change ->where after an innerjoin to andWhere. This must be because innerjoin adds its own where clause.
The text was updated successfully, but these errors were encountered: