200 (Success) should not raise an error.

This commit is contained in:
marcins78@gmail.com
2013-02-20 00:26:20 +00:00
parent 80d9830df4
commit 15679584f7

View File

@@ -13,7 +13,7 @@ var GempLotrCommunication = Class.extend({
var errorStatus = "" + xhr.status;
if (errorMap != null && errorMap[errorStatus] != null)
errorMap[errorStatus](xhr, status, request);
else
else if (""+xhr.status != "200")
that.failure(xhr, status, request);
};
},