Default to empty filename
This commit is contained in:
parent
21e3ba4653
commit
174086a011
|
@ -629,7 +629,7 @@ export class Message {
|
|||
/**
|
||||
* Creates new message object from text.
|
||||
* @param {String | ReadableStream<String>} text
|
||||
* @param {String} [filename="msg.txt"]
|
||||
* @param {String} [filename=""]
|
||||
* @param {Date} [date=current date]
|
||||
* @param {utf8|binary|text|mime} [type] - Data packet type
|
||||
* @returns {Message} New message object.
|
||||
|
@ -656,7 +656,7 @@ export class Message {
|
|||
/**
|
||||
* Creates new message object from binary data.
|
||||
* @param {Uint8Array | ReadableStream<Uint8Array>} bytes
|
||||
* @param {String} [filename="msg.txt"]
|
||||
* @param {String} [filename=""]
|
||||
* @param {Date} [date=current date]
|
||||
* @param {utf8|binary|text|mime} [type] - Data packet type
|
||||
* @returns {Message} New message object.
|
||||
|
|
|
@ -36,7 +36,7 @@ class LiteralDataPacket {
|
|||
this.date = util.normalizeDate(date);
|
||||
this.text = null; // textual data representation
|
||||
this.data = null; // literal data representation
|
||||
this.filename = 'msg.txt';
|
||||
this.filename = '';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -404,7 +404,7 @@ function tests() {
|
|||
openpgp.config.allowUnauthenticatedStream = true;
|
||||
try {
|
||||
const encrypted = await openpgp.encrypt({
|
||||
message: openpgp.Message.fromBinary(data),
|
||||
message: openpgp.Message.fromBinary(data, 'msg.bin'),
|
||||
passwords: ['test']
|
||||
});
|
||||
expect(openpgp.stream.isStream(encrypted)).to.equal(expectedType);
|
||||
|
|
Loading…
Reference in New Issue
Block a user