Merge pull request #408 from beautyfree/patch-1

Fix: SqlStorage _getBackupLocation method argument
This commit is contained in:
Max Lynch
2015-10-31 09:36:43 -05:00

View File

@@ -50,7 +50,7 @@ export class SqlStorage extends StorageEngine {
if(window.sqlitePlugin) {
let location = this._getBackupLocation(dbOptions);
let location = this._getBackupLocation(dbOptions.backupFlag);
this._db = window.sqlitePlugin.openDatabase(util.extend({
name: dbOptions.name,