Skip to content

Commit

Permalink
Bugfix for #1709
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Sep 22, 2024
1 parent 04f3133 commit 93cc623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/Sieve/Commands/Tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 93cc623

Please sign in to comment.