Skip to content

Commit

Permalink
chore(server): follow up on #15899
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Feb 4, 2025
1 parent 58bf58b commit 2f41032
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/src/repositories/map.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ export class MapRepository {
.$if(fileCreatedAfter !== undefined, (q) => q.where('fileCreatedAt', '>=', fileCreatedAfter!))
.$if(fileCreatedBefore !== undefined, (q) => q.where('fileCreatedAt', '<=', fileCreatedBefore!))
.where('deletedAt', 'is', null)
.where('exif.latitude', 'is not', null)
.where('exif.longitude', 'is not', null)
.where((builder) => {
const expression: Expression<SqlBool>[] = [];

Expand Down

0 comments on commit 2f41032

Please sign in to comment.