mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Fix post attachment file path (#316)
This commit is contained in:
@@ -654,7 +654,7 @@ export class ApiService implements ApiServiceAbstraction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
postAttachmentFile(id: string, attachmentId: string, data: FormData): Promise<any> {
|
postAttachmentFile(id: string, attachmentId: string, data: FormData): Promise<any> {
|
||||||
return this.send('POST', '/ciphers/' + id + '/attachment/' + attachmentId + '/renew', data, true, false);
|
return this.send('POST', '/ciphers/' + id + '/attachment/' + attachmentId, data, true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collections APIs
|
// Collections APIs
|
||||||
|
|||||||
Reference in New Issue
Block a user