mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 23:08:08 +08:00
Resolve #622
This commit is contained in:
parent
1ced0dcd1e
commit
009b76de24
1 changed files with 4 additions and 4 deletions
|
@ -104,10 +104,10 @@
|
|||
break;
|
||||
}
|
||||
line = line.match(/^([^:;]+)[:;](.+)$/);
|
||||
if (line) {
|
||||
if (VALARM) {
|
||||
VALARM[line[1]] = line[2];
|
||||
} else {
|
||||
if (multiple.includes(line[1]) || 'X-' == line[1].slice(0,2)) {
|
||||
} else if (multiple.includes(line[1]) || 'X-' == line[1].slice(0,2)) {
|
||||
VEVENT[line[1]] || (VEVENT[line[1]] = []);
|
||||
VEVENT[line[1]].push(line[2]);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue