From 6d98daa0bb8eda63ab74eb805515ab3b11034cc0 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Sun, 8 Feb 2015 23:18:19 -0800 Subject: [PATCH] Bug: Use right delimiter for URLs with quantity --- src/scripts/crafting_guide_router.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/crafting_guide_router.coffee b/src/scripts/crafting_guide_router.coffee index f6f0cf051..49707327a 100644 --- a/src/scripts/crafting_guide_router.coffee +++ b/src/scripts/crafting_guide_router.coffee @@ -84,7 +84,7 @@ module.exports = class CraftingGuideRouter extends Backbone.Router text = '' if params.recipeName? if params.count? - text = "#{params.count}:#{params.recipeName}" + text = "#{params.count}.#{params.recipeName}" else text = "#{params.recipeName}"