diff --git a/src/services/api.service.ts b/src/services/api.service.ts index 5d445811c85..0f0f5d63fef 100644 --- a/src/services/api.service.ts +++ b/src/services/api.service.ts @@ -444,7 +444,7 @@ export class ApiService implements ApiServiceAbstraction { } async renewFileUploadUrl(sendId: string, fileId: string): Promise { - const r = await this.send('GET', '/sends/' + sendId + '/file/' + fileId, null, true, true); + const r = await this.send('GET', '/sends/' + sendId + '/file/' + fileId + '/renew', null, true, true); return new SendFileUploadDataResponse(r); }