if(context.attachments[0].postType != undefined) {
return context.send(`post`);
}
Handle polling update error: TypeError: Cannot read property 'postType' of undefined
if(context.attachments[0] != undefined && context.attachments[0].postType != undefined) {
return context.send(`post`);
}