summaryrefslogtreecommitdiff
path: root/service/pixelated/assets
diff options
context:
space:
mode:
Diffstat (limited to 'service/pixelated/assets')
-rw-r--r--service/pixelated/assets/Interstitial.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/pixelated/assets/Interstitial.js b/service/pixelated/assets/Interstitial.js
index cda56a4b..2eaa7a1c 100644
--- a/service/pixelated/assets/Interstitial.js
+++ b/service/pixelated/assets/Interstitial.js
@@ -44,7 +44,7 @@ $(function () {
method: 'GET',
url: '/login/status'
}).success(function (data) {
- if (data === 'completed' || data === 'error') {
+ if (data.status === 'completed' || data.status === 'error') {
window.location="/";
}
});