Fix overzealous edit
authorJason Skomorowski <jason@indexdata.com>
Fri, 6 Feb 2015 16:04:03 +0000 (11:04 -0500)
committerJason Skomorowski <jason@indexdata.com>
Fri, 6 Feb 2015 16:04:03 +0000 (11:04 -0500)
src/mkws-filter.js

index 5833cc3..0b2ea63 100644 (file)
@@ -95,7 +95,7 @@ function filterSet(team) {
 
     that.visitCategories(function(id) {
       if (res) res += ",";
-      res += "category~" + id.replace(/[\,]/g, '\\$&');
+      res += "category~" + id.replace(/[\\,]/g, '\\$&');
     });
     return res;
   }