fix(s3-backend): remove redundant parameter

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-04-14 18:05:14 +02:00
parent baaa41b1e5
commit e8d4fc692d

View file

@ -59,7 +59,7 @@ export class S3Backend implements MediaBackend {
}
}
async deleteFile(fileName: string, _: BackendData): Promise<void> {
async deleteFile(fileName: string): Promise<void> {
try {
await this.client.removeObject(this.config.bucket, fileName);
const url = this.getUrl(fileName);