Default to empty filename

This commit is contained in:
Daniel Huigens 2021-02-28 00:32:18 +01:00
parent 21e3ba4653
commit 174086a011
3 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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 = '';
}
/**

View File

@ -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);