Skip to content

Commit

Permalink
fix regression from [28465] where errors don't get reported, fixes #1…
Browse files Browse the repository at this point in the history
…6813 and refs #15118, #14591 on trunk/, thanks Jared, !strict.
  • Loading branch information
wkeese committed Mar 8, 2013
1 parent d2d5f02 commit 06c45e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion html.js
Expand Up @@ -310,9 +310,11 @@ define(["./_base/kernel", "./_base/lang", "./_base/array", "./_base/declare", ".
scope: this.parserScope
}).then(function(results){
return self.parseResults = results;
}, function(e){
self._onError('Content', e, "Error parsing in _ContentSetter#" + this.id);
});
}catch(e){
this._onError('Content', e, "Error parsing in _ContentSetter#"+this.id);
this._onError('Content', e, "Error parsing in _ContentSetter#" + this.id);
}
},

Expand Down

0 comments on commit 06c45e1

Please sign in to comment.