Index: lib/websql/io.js |
=================================================================== |
--- a/lib/websql/io.js |
+++ b/lib/websql/io.js |
@@ -57,16 +57,17 @@ var IO = exports.IO = |
{ |
// Code attempts to read the default patterns.ini, we don't have that. |
// Make sure to execute first-run actions instead. |
var Utils = require("utils").Utils; |
Utils.runAsync(function() |
{ |
if (localStorage.currentVersion) |
seenDataCorruption = true; |
+ delete localStorage.currentVersion; |
callback(null); |
}); |
return; |
} |
var path = this._getFilePath(file); |
var runAsync = require("utils").Utils.runAsync; |