Cleanup Email.toLine()

This commit is contained in:
the-djmaze 2022-03-30 10:26:00 +02:00
parent 2af5257e10
commit 7585ac450e
3 changed files with 4 additions and 4 deletions

View file

@ -388,7 +388,7 @@ export class EmailModel extends AbstractModel {
exists = true;
}
result.push(address ? address.toLine(false) : item.name);
result.push(address ? address.toLine() : item.name);
});
return exists ? result : null;