fix DriveService.ts

This commit is contained in:
tamaina 2023-04-13 11:27:05 +00:00
parent 2423fb8d38
commit 93dcd1c98e
1 changed files with 1 additions and 0 deletions

View File

@ -420,6 +420,7 @@ export class DriveService {
for (const fileId of exceedFileIds) {
const file = await this.driveFilesRepository.findOneBy({ id: fileId });
if (file == null) continue;
this.deleteFile(file, true);
}
}