We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad6e53 commit 955187aCopy full SHA for 955187a
src/raven.js
@@ -453,7 +453,7 @@ Raven.prototype = {
453
// stack[0] is `throw new Error(msg)` call itself, we are interested in the frame that was just before that, stack[1]
454
var initialCall = stack.stack[1];
455
456
- var fileurl = initialCall.url || '';
+ var fileurl = (initialCall && initialCall.url) || '';
457
458
if (
459
!!this._globalOptions.ignoreUrls.test &&
0 commit comments