From ae36e5e22aebba37159581f9f6bc0a74c8a25a1f Mon Sep 17 00:00:00 2001 From: shoopea Date: Thu, 29 Aug 2019 20:03:54 +0800 Subject: [PATCH] fix g deposit --- client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client.go b/client.go index 0991598..21e23e8 100644 --- a/client.go +++ b/client.go @@ -30,9 +30,10 @@ func getLockedClient(id int64, createMissing bool) (*ChirpClient, bool) { } } -func clientFwdCWMsg(fromMsgID64 int64, fromChatID64 int64, toChatID64 int64) { +func clientFwdCWMsg(userID64 int64, fromMsgID64 int64, fromChatID64 int64, toChatID64 int64) { c := TGCommand{ Type: commandForwardMsg, + FromUserID64: userID64, FromMsgID64: fromMsgID64, FromChatID64: fromChatID64, ToChatID64: toChatID64,