From 535efcc8bd13110dab50108db9c09684a72429ac Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 5 Jun 2020 17:54:09 +0300 Subject: [PATCH] Send "delivery" receipt for messages bridged from WhatsApp too --- portal.go | 1 + 1 file changed, 1 insertion(+) diff --git a/portal.go b/portal.go index 5c442f0..316664a 100644 --- a/portal.go +++ b/portal.go @@ -279,6 +279,7 @@ func (portal *Portal) startHandling(info whatsapp.MessageInfo) bool { func (portal *Portal) finishHandling(source *User, message *waProto.WebMessageInfo, mxid id.EventID) { portal.markHandled(source, message, mxid) + portal.sendDeliveryReceipt(mxid) portal.log.Debugln("Handled message", message.GetKey().GetId(), "->", mxid) }