From b4e72f3414a1270194a780260e80a2bfa52f5c8d Mon Sep 17 00:00:00 2001 From: Justin Dalrymple Date: Thu, 22 Jun 2017 15:32:17 -0400 Subject: [PATCH] Fixing typo in utils file --- src/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.js b/src/Utils.js index 3645c9b8..087c25dc 100644 --- a/src/Utils.js +++ b/src/Utils.js @@ -1,7 +1,7 @@ function parse(value){ if (typeof value === "number") return value; else if (value.toString().includes("/")) return encodeURIComponent(value); - else return parseInt(issueId); + else return parseInt(value); } module.exports = {