Skip to content

Commit

Permalink
fix(ci): fake a change
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Nov 11, 2024
1 parent 2308ced commit ea14e63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/database/provider/arango/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export class Arango implements DatabaseProvider {
throw new Error('invalid or missing collection argument for find operation');
}

let filterQuery: any = filter || {};
const opts = options || {};
let filterQuery: any = filter ?? {};
const opts = options ?? {};
let filterResult: any;
let bindVars: any;

Expand Down

0 comments on commit ea14e63

Please sign in to comment.