You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
but it was
The text was updated successfully, but these errors were encountered: