mirror of
https://github.com/python/cpython.git
synced 2026-05-06 04:37:33 -04:00
Fix bug notifier for issues with no body text (#145603)
This commit is contained in:
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 = {
|
||||
|
||||
Reference in New Issue
Block a user