Skip to content

Commit e79229a

Browse files
Merge branch 'SDKS-8407_baseline' into breaking_changes_baseline
2 parents 18b3243 + af7981f commit e79229a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sync/polling/updaters/segmentChangesUpdater.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function segmentChangesUpdaterFactory(
3838
segmentChangesFetcher(since, segmentName, noCache, till).then((changes) => {
3939
return Promise.all(changes.map(x => {
4040
log.debug(`${LOG_PREFIX_SYNC_SEGMENTS}Processing ${segmentName} with till = ${x.till}. Added: ${x.added.length}. Removed: ${x.removed.length}`);
41-
return segments.update(x.name, x.added, x.removed, x.till);
41+
return segments.update(segmentName, x.added, x.removed, x.till);
4242
})).then((updates) => {
4343
return updates.some(update => update);
4444
});

0 commit comments

Comments
 (0)