Commit f17c54954705cd70953ba307c42ed5141922fb7e

Authored by Sascha Depold
1 parent 3fe826df
Exists in master and in 1 other branch production

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 856 error = Util.merge(this.options.errorDefaults, errorWithoutDefaults),
857 857  
858 858 component = error.component || '',
859   - request_url = (error.url || '' + location.hash),
  859 + request_url = (error.url || '' + location.href),
860 860  
861 861 methods = ['cgi-data', 'params', 'session'],
862 862 _outputData = null;
... ...