Changed WebSQL error to be more in line with IndexedDB error.

This commit is contained in:
kwkofler 2014-03-30 12:48:04 -04:00
parent 67ada1ba73
commit e925ec3556
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ define(function(require) {
function onError(transaction, error) {
if (error.code === 5) {
callback(new Errors.EINVAL('WebSQL access not authorized. If private browsing is enabled, disable it.'));
callback(new Errors.EINVAL('WebSQL cannot be accessed. If private browsing is enabled, disable it.'));
}
callback(error);
}