mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-10 15:05:02 +08:00
fix(k2) fix local sync deltas
This commit is contained in:
parent
e4460d3577
commit
dfee7ea9b6
2 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@ export default class NylasSyncWorker {
|
||||||
_deltaStreamOpts = (streamName) => {
|
_deltaStreamOpts = (streamName) => {
|
||||||
return {
|
return {
|
||||||
getCursor: () => this._state.deltaCursors[streamName],
|
getCursor: () => this._state.deltaCursors[streamName],
|
||||||
setCursor: val => {
|
setCursor: (val) => {
|
||||||
this._state.deltaCursors[streamName] = val;
|
this._state.deltaCursors[streamName] = val;
|
||||||
this._writeState();
|
this._writeState();
|
||||||
},
|
},
|
||||||
|
|
2
src/K2
2
src/K2
|
@ -1 +1 @@
|
||||||
Subproject commit 18d0dcaeade3f73b5905820baf71a1553dc28343
|
Subproject commit 807e25d4b68abb506279c5e349851a0a6e7c4fca
|
Loading…
Reference in a new issue