From 69c25171d553d699fede90dc55887295fe884b43 Mon Sep 17 00:00:00 2001 From: Angus McLeod Date: Tue, 27 Aug 2019 17:28:49 +1000 Subject: [PATCH] Fix sub-category slugs --- lib/builder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builder.rb b/lib/builder.rb index 856099e9..c823ee75 100644 --- a/lib/builder.rb +++ b/lib/builder.rb @@ -524,7 +524,7 @@ class CustomWizard::Builder if action['category_id'] if category = Category.find(action['category_id']) - url += "&category=#{category.full_slug}" + url += "&category=#{category.full_slug('/')}" end end