mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-06 07:00:24 +00:00
fix(s3-backend): remove redundant parameter
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
baaa41b1e5
commit
e8d4fc692d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue