1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 03:05:52 +02:00

fix DriveService.ts

This commit is contained in:
tamaina
2023-04-13 11:27:05 +00:00
parent 2423fb8d38
commit 93dcd1c98e

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);
}
}