LP#1755220: Return value checking in offline session fetch user/miker/lp-1755220-offline-patron-reg-loading
authorMike Rylander <mrylander@gmail.com>
Fri, 4 May 2018 13:58:53 +0000 (09:58 -0400)
committerMike Rylander <mrylander@gmail.com>
Fri, 4 May 2018 13:58:53 +0000 (09:58 -0400)
We need to make sure that we receive the correct shape of data (array) rather
than that we simply got anything when fetching sessions.  In the case of an
expired session token, we'll receive an ILS Event object informing us of the
expiration where we'd normally see a list of sessions.

Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/web/js/ui/default/staff/offline.js

index 1441c38..947aa42 100644 (file)
@@ -126,10 +126,11 @@ function($routeProvider , $locationProvider , $compileProvider) {
             });
         }
 
+        $scope.sessions = [];
         $scope.refreshSessions = function () {
 
             return $http.get(formURL({action:'status',status_type:'sessions'})).then(function(res) {
-                if (res.data) {
+                if (angular.isArray(res.data)) {
                     $scope.sessions = res.data;
                     return $q.when();
                 }