summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RhSolutions.Api/Services/SleeveQueryModifier.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/RhSolutions.Api/Services/SleeveQueryModifier.cs b/RhSolutions.Api/Services/SleeveQueryModifier.cs
index 2fc0e33..e95c82e 100644
--- a/RhSolutions.Api/Services/SleeveQueryModifier.cs
+++ b/RhSolutions.Api/Services/SleeveQueryModifier.cs
@@ -6,7 +6,7 @@ namespace RhSolutions.Api.Services
{
public class SleeveQueryModifier : IProductQueryModifier
{
- private readonly string pattern = @"(\b16|20|25|32|40|50|63\b)+";
+ private readonly string pattern = @"\b(16|20|25|32|40|50|63)\b";
public bool TryQueryModify(IQueryCollection collection, out QueryString queryString)
{