Fix bug notifier for issues with no body text (#145603)

This commit is contained in:
Hugo van Kemenade
2026-03-07 16:53:13 +02:00
committed by GitHub
parent 2cf6b2caad
commit 149c465750
@@ -44,7 +44,7 @@ jobs:
// We need to truncate the body size, because the max size for
// the whole payload is 16kb. We want to be safe and assume that
// body can take up to ~8kb of space.
body : issue.data.body.substring(0, 8000)
body : (issue.data.body || "").substring(0, 8000)
};
const data = {