[BUG] in sample: alert
fr-zhangduanfang opened this issue · 0 comments
fr-zhangduanfang commented
Which sample has a bug?
https://github.com/firebase/functions-samples/blob/main/Node/alerts-to-discord/functions/index.js
In this demo the param (event) is a CrashlyticsEvent type, but actually it's a NewFatalIssuePayload type
it's shows the error when I use the const {id, title, subtitle, appVersion} = event.data.payload.issue;
after I fix it to const {id, title, subtitle, appVersion} = event.payload.issue;
it successed,
But there is another problem, how can I get the appId to confirm which app has encounter the crash.
IMO, the event data should like
{
"id": "2133",
"source": "iOS",
"type": "crash",
"appId": "32444",
"alertType":"crashlytics.newFatalIssue",
"data": {
"creatTime": "2023/3/22 8:00:33",
"endTime": "2023/3/22 8:00:33",
"payload": {
"issue": {
"id":"3244242",
"title": "there is a crash",
"subTitle": "subtitle",
"appVersion": "3.24"
}
}
}
}
but it was
{
"data": {
"creatTime": "2023/3/22 8:00:33",
"endTime": "2023/3/22 8:00:33",
"payload": {
"issue": {
"id":"3244242",
"title": "there is a crash",
"subTitle": "subtitle",
"appVersion": "3.24"
}
}
}