fix(server): set modifydate (#16225)

This commit is contained in:
Jonathan Jogenfors
2025-02-20 16:28:30 +01:00
committed by GitHub
parent 9c95adc7fb
commit b0102f8025
4 changed files with 11 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ export class ViewRepository {
.where('isVisible', '=', true)
.where('isArchived', '=', false)
.where('deletedAt', 'is', null)
.where('fileModifiedAt', 'is not', null)
.where('fileCreatedAt', 'is not', null)
.where('fileModifiedAt', 'is not', null)
.where('localDateTime', 'is not', null)
.execute();
@@ -38,7 +38,7 @@ export class ViewRepository {
.where('isVisible', '=', true)
.where('isArchived', '=', false)
.where('deletedAt', 'is', null)
.where('fileModifiedAt', 'is not', null)
.where('fileCreatedAt', 'is not', null)
.where('fileModifiedAt', 'is not', null)
.where('localDateTime', 'is not', null)
.where('originalPath', 'like', `%${normalizedPath}/%`)