fix type error in DriveService.ts

This commit is contained in:
Hazelnoot 2025-06-19 13:51:48 -04:00
parent 05f9d5d446
commit 6d8d91ba8c

View file

@ -207,7 +207,7 @@ export class DriveService {
//#region Uploads
this.registerLogger.debug(`uploading original: ${key}`);
const uploads = [
const uploads: Promise<void>[] = [
this.upload(key, fs.createReadStream(path), type, null, name),
];