diff --git a/js/SeqFeatureStore/NCList.js b/js/SeqFeatureStore/NCList.js index c195c4c737..7ea770ad4b 100644 --- a/js/SeqFeatureStore/NCList.js +++ b/js/SeqFeatureStore/NCList.js @@ -38,7 +38,11 @@ SeqFeatureStore.NCList.prototype.load = function() { dojo.xhrGet({ url: url, handleAs: "json", load: Util.debugHandler( this, function(o) { this.loadSuccess(o, url); }), - error: dojo.hitch( this, function(e) { console.error(''+e); this.loadFail(e, url); } ) + error: dojo.hitch( this, function(error) { + if( error.status != 404 ) + console.error(''+error); + this.loadFail(error, url); + }) }); };