safety net for call of undefined function in mergeDrive

This commit is contained in:
ansuz 2018-08-16 16:59:52 +02:00
parent 2259d1b6ac
commit af40e140f9

View File

@ -70,7 +70,12 @@ define([
Realtime.whenRealtimeSyncs(proxyData.realtime, cb); Realtime.whenRealtimeSyncs(proxyData.realtime, cb);
} }
}; };
if (oldFo && typeof(oldFo.migrate) === 'function') {
oldFo.migrate(onMigrated); oldFo.migrate(onMigrated);
} else {
console.log('oldFo.migrate is not a function');
onMigrated();
}
return; return;
} }
if (typeof(cb) === "function") { cb(); } if (typeof(cb) === "function") { cb(); }