mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 05:02:45 +01:00
fixes downloading files as .part
This commit is contained in:
parent
9472d5eaa6
commit
5f79a9fb6d
@ -63,7 +63,7 @@ export default class FileReceiver extends Nanobus {
|
||||
state = await reader.read();
|
||||
}
|
||||
|
||||
return result.buffer;
|
||||
return result.slice(0, offset).buffer;
|
||||
}
|
||||
|
||||
async download(noSave = false) {
|
||||
@ -85,10 +85,9 @@ export default class FileReceiver extends Nanobus {
|
||||
this.emit('decrypting');
|
||||
|
||||
const dec = await this.keychain.decryptStream(ciphertext);
|
||||
const plainstream = dec.stream;
|
||||
const plaintext = await this.streamToArrayBuffer(
|
||||
plainstream,
|
||||
dec.streamInfo.fileSize
|
||||
dec.stream,
|
||||
this.fileInfo.size
|
||||
);
|
||||
|
||||
if (!noSave) {
|
||||
|
Loading…
Reference in New Issue
Block a user