Add missing status code from known list

This commit is contained in:
Ajay Ramachandran
2021-02-18 21:30:09 -05:00
parent 3927fe5630
commit cad77aef8e

View File

@@ -290,7 +290,7 @@ class Utils {
let errorMessage = "";
const postFix = (responseText ? "\n\n" + responseText : "");
if([400, 429, 409, 502, 0].includes(statusCode)) {
if([400, 429, 409, 502, 503, 0].includes(statusCode)) {
//treat them the same
if (statusCode == 503) statusCode = 502;