Commit 94f860ac2188d406bdd9469e55fea737b2440b81
Exists in
master
and in
1 other branch
Merge pull request #462 from sdepold/patch-1
report the actual url as request_url
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
public/javascripts/notifier.js
... | ... | @@ -1006,7 +1006,7 @@ printStackTrace.implementation.prototype = { |
1006 | 1006 | error = Util.merge(this.options.errorDefaults, errorWithoutDefaults), |
1007 | 1007 | |
1008 | 1008 | component = error.component || '', |
1009 | - request_url = (error.url || '' + location.hash), | |
1009 | + request_url = (error.url || '' + location.href), | |
1010 | 1010 | |
1011 | 1011 | methods = ['cgi-data', 'params', 'session'], |
1012 | 1012 | _outputData = null; | ... | ... |