]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1466159 - crash graph is wrong
authorKohei Yoshino <kohei.yoshino@gmail.com>
Fri, 1 Jun 2018 17:45:23 +0000 (13:45 -0400)
committerdklawren <dklawren@users.noreply.github.com>
Fri, 1 Jun 2018 17:45:23 +0000 (13:45 -0400)
static/metricsgraphics/socorro-lens.html

index 9af06132373c7496b8e2cc663697b154e2d64ea5..c3664db3734b39a20f053c42bc1bd3085311f322 100644 (file)
@@ -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("\\");