From ec042e87f1667c5fcf33915eac71501dfea390ec Mon Sep 17 00:00:00 2001 From: JYC <jycouet@gmail.com> Date: Sun, 23 Sep 2018 14:28:47 +0200 Subject: [PATCH] fix(vsts): check str before length --- lib/platform/vsts/vsts-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/platform/vsts/vsts-helper.js b/lib/platform/vsts/vsts-helper.js index 195a125e9e..5a329d421d 100644 --- a/lib/platform/vsts/vsts-helper.js +++ b/lib/platform/vsts/vsts-helper.js @@ -202,7 +202,7 @@ async function streamToString(stream) { * @param {string} str */ function max4000Chars(str) { - if (str.length >= 4000) { + if (str && str.length >= 4000) { return str.substring(0, 3999); } return str; -- GitLab