kopia lustrzana https://github.com/backface/turtlestitch
Merge pull request #1185 from brollb/1184-getURL-silent-fail
Retrieved message from error. Fixes #1184dev
commit
46ba633bf2
2
gui.js
2
gui.js
|
@ -4842,7 +4842,7 @@ IDE_Morph.prototype.getURL = function (url) {
|
||||||
}
|
}
|
||||||
throw new Error('unable to retrieve ' + url);
|
throw new Error('unable to retrieve ' + url);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
myself.showMessage(err);
|
myself.showMessage(err.toString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue