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 66f8b84 commit 36f6fc5Copy full SHA for 36f6fc5
src/components/App.vue
@@ -320,6 +320,9 @@ module.exports = {
320
req.responseType = "arraybuffer";
321
req.onload = function () {
322
console.log("S3 test returned: " + req.status);
323
+ if (req.status == 503) {
324
+ errorCb(Error("Rate Limited Error"));
325
+ }
326
};
327
req.onerror = function (e) {
328
console.log('Unable to contact: ' + domain);
0 commit comments