From b42209b0dd0eae6e11d3fe8f21fea76d3a8dd91a Mon Sep 17 00:00:00 2001 From: taylorfries Date: Fri, 8 Nov 2024 15:47:22 -0800 Subject: [PATCH] i wish these little errors were caught before trying to run. --- .github/helpers/github-api/update-issue-and-comment.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/helpers/github-api/update-issue-and-comment.mjs b/.github/helpers/github-api/update-issue-and-comment.mjs index 3d806c3faa..da24765b2b 100644 --- a/.github/helpers/github-api/update-issue-and-comment.mjs +++ b/.github/helpers/github-api/update-issue-and-comment.mjs @@ -35,7 +35,7 @@ const STATCODE = { }; const checkStatus = (retInfo) => { - returnedStatus = retInfo.status; + const returnedStatus = retInfo.status; if (returnedStatus in STATCODE.Success) { // hit a listed successful code, return good code