From 93cc623891ce309a73eb0a835e34458aabaf1a14 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Sun, 22 Sep 2024 18:55:19 +0200 Subject: [PATCH] Bugfix for #1709 --- dev/Sieve/Commands/Tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/Sieve/Commands/Tests.js b/dev/Sieve/Commands/Tests.js index 15664220d..6e5c8c05a 100644 --- a/dev/Sieve/Commands/Tests.js +++ b/dev/Sieve/Commands/Tests.js @@ -40,7 +40,7 @@ export class AddressTest extends TestCommand this.header_list = new GrammarStringList; this.key_list = new GrammarStringList; // rfc5260#section-6 - this.index = new GrammarNumber; + this.index = new GrammarNumber(''); this.last = false; // rfc5703#section-6 // this.mime @@ -234,7 +234,7 @@ export class HeaderTest extends TestCommand this.header_names = new GrammarStringList; this.key_list = new GrammarStringList; // rfc5260#section-6 - this.index = new GrammarNumber; + this.index = new GrammarNumber(''); this.last = false; // rfc5703#section-6 this.mime = false;