From 939398774d434747a05d9385ca61ef61927faad5 Mon Sep 17 00:00:00 2001 From: Keegan Date: Thu, 16 Jun 2016 00:45:52 -0700 Subject: [PATCH] remove another impossible case --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b985bc3..d223733 100755 --- a/index.js +++ b/index.js @@ -311,7 +311,7 @@ Clay.prepareSettingsForAppMessage = function(settings) { return; } - var position = parseInt(matches[2] || 0, 10); + var position = parseInt(matches[2], 10); key = matches[1]; if (typeof flatSettings[key] === 'undefined') {