Fix _prepareError check

This commit is contained in:
toasted-nutbread 2020-04-18 21:15:15 -04:00
parent 4638985b16
commit 51d756eefc

View File

@ -886,7 +886,7 @@ class Backend {
let status = null;
if (!this._isPrepared) {
if (this._prepareError !== null) {
if (this._prepareError) {
text = '!!';
color = '#f04e4e';
status = 'Error';