summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/whatsmeow/internals.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/go.mau.fi/whatsmeow/internals.go')
-rw-r--r--vendor/go.mau.fi/whatsmeow/internals.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/go.mau.fi/whatsmeow/internals.go b/vendor/go.mau.fi/whatsmeow/internals.go
index 64a0b354..7a8d50b5 100644
--- a/vendor/go.mau.fi/whatsmeow/internals.go
+++ b/vendor/go.mau.fi/whatsmeow/internals.go
@@ -53,3 +53,11 @@ func (int *DangerousInternalClient) RefreshMediaConn(force bool) (*MediaConn, er
func (int *DangerousInternalClient) GetServerPreKeyCount() (int, error) {
return int.c.getServerPreKeyCount()
}
+
+func (int *DangerousInternalClient) RequestAppStateKeys(keyIDs [][]byte) {
+ int.c.requestAppStateKeys(keyIDs)
+}
+
+func (int *DangerousInternalClient) SendRetryReceipt(node *waBinary.Node, forceIncludeIdentity bool) {
+ int.c.sendRetryReceipt(node, forceIncludeIdentity)
+}