diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-10-16 13:09:38 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-10-16 13:09:38 +0530 |
commit | a002e0e5c5910f78c8f3910ad4101386d30ebf70 (patch) | |
tree | 60c1cebfcffb43fa0af221fa36a891beb806bafc /src/fields/List.ts | |
parent | 3b81903962ac10bbf87013e045c7fdf101fea9ec (diff) | |
parent | e6d700159cb6c273a2df0fd02469e72aa5b48c86 (diff) |
merge
Diffstat (limited to 'src/fields/List.ts')
-rw-r--r-- | src/fields/List.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/List.ts b/src/fields/List.ts index a0cbebaf5..215dff34b 100644 --- a/src/fields/List.ts +++ b/src/fields/List.ts @@ -78,7 +78,7 @@ const listHandlers: any = { } const res = list.__fields.splice(start, deleteCount, ...items); this[Update](items.length === 0 && deleteCount ? { op: "$remFromSet", items: removed, length: list.__fields.length } : - items.length && !deleteCount ? { op: "$addToSet", items, length: list.__fields.length } : undefined); + items.length && !deleteCount && start === list.__fields.length ? { op: "$addToSet", items, length: list.__fields.length } : undefined); return res.map(toRealField); }), unshift(...items: any[]) { |