fix: Show sent status for messenger channel (#8145)

This commit is contained in:
Muhsin Keloth
2023-10-19 13:22:19 +05:30
committed by GitHub
parent 78ce8a4652
commit b94c89ebf1

View File

@@ -201,7 +201,11 @@ export default {
return !!this.sourceId;
}
if (this.isAWhatsAppChannel || this.isATwilioChannel) {
if (
this.isAWhatsAppChannel ||
this.isATwilioChannel ||
this.isAFacebookInbox
) {
return this.sourceId && this.isSent;
}
return false;