We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867384f commit b3671dfCopy full SHA for b3671df
src/Controllers/DatabaseController.js
@@ -110,7 +110,8 @@ DatabaseController.prototype.validateClassName = function(className) {
110
DatabaseController.prototype.loadSchema = function() {
111
if (!this.schemaPromise) {
112
this.schemaPromise = SchemaController.load(this.adapter);
113
- this.schemaPromise.then(() => delete this.schemaPromise);
+ this.schemaPromise.then(() => delete this.schemaPromise,
114
+ () => delete this.schemaPromise);
115
}
116
return this.schemaPromise;
117
};
0 commit comments