diff --git a/core/js/Http.js b/core/js/Http.js
index 4c5fdcb..c4a7633 100644
--- a/core/js/Http.js
+++ b/core/js/Http.js
@@ -59,10 +59,11 @@ function httpReq(type,url,callback,params,headers,data,contentType,username,pass
 			status = false;
 		}
 		if(x.readyState == 4 && callback && (status !== undefined)) {
-			if([0, 200, 201, 204, 207].contains(status))
+			if([0, 200, 201, 204, 207, 1223].contains(status)) {
 				callback(true,params,x.responseText,url,x);
-			else
+			} else {
 				callback(false,params,null,url,x);
+			}
 			x.onreadystatechange = function(){};
 			x = null;
 		}

