mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Fix some Sieve parser issues
This commit is contained in:
parent
62639acc5a
commit
f3935b1df4
3 changed files with 6 additions and 5 deletions
|
|
@ -23,7 +23,8 @@ class FlagCommand extends ActionCommand
|
|||
|
||||
toString()
|
||||
{
|
||||
return this.identifier + ' ' + this._variablename + ' ' + this.list_of_flags + ';';
|
||||
let name = this._variablename;
|
||||
return this.identifier + (name.length ? ' ' + this.variablename : '') + ' ' + this.list_of_flags + ';';
|
||||
}
|
||||
|
||||
get variablename()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue