Fix some Sieve parser issues

This commit is contained in:
the-djmaze 2024-01-03 01:47:52 +01:00
parent 62639acc5a
commit f3935b1df4
3 changed files with 6 additions and 5 deletions

View file

@ -18,9 +18,9 @@ import {
*/
export class ConditionalCommand extends ControlCommand
{
constructor()
constructor(identifier)
{
super();
super(identifier);
this.test = null;
}