From 02c949ed04e5815509831069e549504701153562 Mon Sep 17 00:00:00 2001 From: Jason Skomorowski Date: Fri, 6 Feb 2015 10:20:14 -0500 Subject: [PATCH] Allow multiple categories MKWS-377 --- src/mkws-filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 3554d98..5833cc3 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -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; } -- 1.7.10.4