summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2019-05-15 10:44:45 -0400
committerPliable Pixels <pliablepixels@gmail.com>2019-05-15 10:44:45 -0400
commit36725a09b94b37ebfcd17f8909070745482728b0 (patch)
treed9f0b895295e26de9391281bbc7e5f6663b4c03f
parenteb327c9b7cbca93c7fee43b3a25e47112ba7c595 (diff)
typo #817
-rwxr-xr-xwww/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/app.js b/www/js/app.js
index cf95a600..c8e59138 100755
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -694,11 +694,11 @@ angular.module('zmApp', [
rejection.config.url = rejection.config.url.replace(/&token=([^&]*)/, $rootScope.authSession);
return $injector.get('$http')(rejection.config);
}, function (err) {
- return response;
+ return err;
});
}
else {
- return response;
+ return rejection;
}
},