From d3a95bd07b5b3a2e8ea781297d31c4914a0e6e2f Mon Sep 17 00:00:00 2001 From: nambihawkins Date: Sat, 13 Jan 2018 01:10:19 -0500 Subject: [PATCH] genLoopIndex max length was changed from 50 to 150 --- src/tool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool.js b/src/tool.js index 0997882..bf7b406 100644 --- a/src/tool.js +++ b/src/tool.js @@ -2,7 +2,7 @@ exports.genURL = (urlLength) => { var urlString = ""; const sourceLetters = "ABCDEFGHJKMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz23456789"; - for(var genLoopIndex = 0; genLoopIndex < 50; genLoopIndex++){ + for(var genLoopIndex = 0; genLoopIndex < 150; genLoopIndex++){ // Add a random letter to the urlString urlString += sourceLetters.charAt(Math.random() * (sourceLetters.length - 1))