mirror of https://github.com/calzoneman/sync.git
Add dummy ID to migrator to fix #831
This commit is contained in:
parent
08f9feef74
commit
c4a1d4b18c
|
@ -118,7 +118,7 @@ function migrate(src, dest, opts) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return src.load(name).then(data => {
|
return src.load(-1, name).then(data => {
|
||||||
data = fixOldChandump(data);
|
data = fixOldChandump(data);
|
||||||
Object.keys(data).forEach(key => {
|
Object.keys(data).forEach(key => {
|
||||||
if (opts.keyWhitelist.length > 0 &&
|
if (opts.keyWhitelist.length > 0 &&
|
||||||
|
|
Loading…
Reference in New Issue