Bug: Use right delimiter for URLs with quantity

This commit is contained in:
Andrew Miner
2015-02-08 23:18:19 -08:00
parent e23b6154ae
commit 6d98daa0bb
+1 -1
View File
@@ -84,7 +84,7 @@ module.exports = class CraftingGuideRouter extends Backbone.Router
text = '' text = ''
if params.recipeName? if params.recipeName?
if params.count? if params.count?
text = "#{params.count}:#{params.recipeName}" text = "#{params.count}.#{params.recipeName}"
else else
text = "#{params.recipeName}" text = "#{params.recipeName}"