Commit f17c54954705cd70953ba307c42ed5141922fb7e
1 parent
3fe826df
Exists in
master
and in
1 other branch
report the actual url as request_url
Reporting the hash turns (for me) out to be error prone as I do not get the actual host.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
public/javascripts/notifier.js
| @@ -856,7 +856,7 @@ printStackTrace.implementation.prototype = { | @@ -856,7 +856,7 @@ printStackTrace.implementation.prototype = { | ||
| 856 | error = Util.merge(this.options.errorDefaults, errorWithoutDefaults), | 856 | error = Util.merge(this.options.errorDefaults, errorWithoutDefaults), |
| 857 | 857 | ||
| 858 | component = error.component || '', | 858 | component = error.component || '', |
| 859 | - request_url = (error.url || '' + location.hash), | 859 | + request_url = (error.url || '' + location.href), |
| 860 | 860 | ||
| 861 | methods = ['cgi-data', 'params', 'session'], | 861 | methods = ['cgi-data', 'params', 'session'], |
| 862 | _outputData = null; | 862 | _outputData = null; |