Bug 960905 - Fix a misuse of DevToolsUtils.reportException in ThreadSources.prototype.getOriginalLocation. r=fitzgen

This commit is contained in:
Stefan Alderson 2014-03-03 10:34:18 -05:00
parent 7fb6ee01db
commit 39072157b1

View File

@ -4709,7 +4709,7 @@ ThreadSources.prototype = {
})
.then(null, error => {
if (!DevToolsUtils.reportingDisabled) {
DevToolsUtils.reportException(error);
DevToolsUtils.reportException("ThreadSources.prototype.getOriginalLocation", error);
}
return { url: null, line: null, column: null };
});