diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-06-01 19:45:23 +0200 |
---|---|---|
committer | dklawren <dklawren@users.noreply.github.com> | 2018-06-01 19:45:23 +0200 |
commit | 4c427904c8b0f654954f0f76c7c2c8401a48d088 (patch) | |
tree | 3c24af3efdc244144eb2c3c5bc962b5f3096bb47 | |
parent | 5460e9be3a80d353f7c49ca94833c08455440ce8 (diff) | |
download | bugzilla-4c427904c8b0f654954f0f76c7c2c8401a48d088.tar.gz bugzilla-4c427904c8b0f654954f0f76c7c2c8401a48d088.tar.xz |
Bug 1466159 - crash graph is wrong
-rw-r--r-- | static/metricsgraphics/socorro-lens.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/metricsgraphics/socorro-lens.html b/static/metricsgraphics/socorro-lens.html index 9af061323..c3664db37 100644 --- a/static/metricsgraphics/socorro-lens.html +++ b/static/metricsgraphics/socorro-lens.html @@ -96,7 +96,7 @@ function getSignaturesFromURL(search, match) { var index = search.indexOf("?s="); - search = search.substring(index + 3); + search = search.substring(index + 3).replace(/\+/g, '%20'); var signatures = []; if (search.indexOf("\\") !== -1) { signatures = search.split("\\"); |