diff --git a/Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js b/Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js index 5bbc4a26a8..6ea827b3a8 100644 --- a/Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js +++ b/Dashboard/app/js/lib/models/FLOWrest-adapter-v2-common.js @@ -27,7 +27,7 @@ DS.FLOWRESTAdapter = DS.RESTAdapter.extend({ this._super(store, type, json, root); // only change metaControl info if there is actual meta info in the server response metaObj = this.extractMeta(json); - if (metaObj && metaObj.message) { + if (metaObj && !Ember.none(metaObj.message)) { if (type == FLOW.SurveyInstance) { FLOW.metaControl.set('numSILoaded', this.extractMeta(json).num); FLOW.metaControl.set('since', this.extractMeta(json).since);