This commit is contained in:
Girish Ramakrishnan
2019-08-20 19:38:53 -07:00
parent 22664bea62
commit a56f20584f

View File

@@ -1230,6 +1230,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
if (error) return callback(error);
if (status !== 200) return callback(new ClientError(status, data));
// the datapoint returned here is an [value, timestamp]
callback(null, data);
});
};