Fix missing feature flag on messaging listeners (#3952)

* Fix missing feature flag on messaging listeners

* Update workspace-query-runner.service.ts
This commit is contained in:
Weiko
2024-02-13 20:23:09 +01:00
committed by GitHub
parent 8ce7020b12
commit 1afe8aecd0
4 changed files with 74 additions and 6 deletions

View File

@ -311,6 +311,9 @@ export class WorkspaceQueryRunnerService {
private removeNestedProperties<Record extends IRecord = IRecord>(
record: Record,
) {
if (!record) {
return;
}
const sanitizedRecord = {};
for (const [key, value] of Object.entries(record)) {