aboutsummaryrefslogtreecommitdiffhomepage
path: root/background.js
diff options
context:
space:
mode:
Diffstat (limited to 'background.js')
-rw-r--r--background.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/background.js b/background.js
index 446bf0bc..adb86553 100644
--- a/background.js
+++ b/background.js
@@ -100,12 +100,14 @@ function submitVote(type, UUID, callback) {
} else if (xmlhttp.readyState == 4 && xmlhttp.status == 405) {
//duplicate vote
callback({
- successType: 0
+ successType: 0,
+ statusCode: xmlhttp.status
});
} else if (error) {
//error while connect
callback({
- successType: -1
+ successType: -1,
+ statusCode: xmlhttp.status
});
}
})