diff options
Diffstat (limited to 'vendor/go.mau.fi/whatsmeow/internals.go')
-rw-r--r-- | vendor/go.mau.fi/whatsmeow/internals.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/go.mau.fi/whatsmeow/internals.go b/vendor/go.mau.fi/whatsmeow/internals.go index f71e71e5..8227b0ce 100644 --- a/vendor/go.mau.fi/whatsmeow/internals.go +++ b/vendor/go.mau.fi/whatsmeow/internals.go @@ -10,6 +10,7 @@ import ( "context" waBinary "go.mau.fi/whatsmeow/binary" + "go.mau.fi/whatsmeow/types" ) type DangerousInternalClient struct { @@ -62,6 +63,6 @@ func (int *DangerousInternalClient) RequestAppStateKeys(ctx context.Context, key int.c.requestAppStateKeys(ctx, keyIDs) } -func (int *DangerousInternalClient) SendRetryReceipt(node *waBinary.Node, forceIncludeIdentity bool) { - int.c.sendRetryReceipt(node, forceIncludeIdentity) +func (int *DangerousInternalClient) SendRetryReceipt(node *waBinary.Node, info *types.MessageInfo, forceIncludeIdentity bool) { + int.c.sendRetryReceipt(node, info, forceIncludeIdentity) } |