aboutsummaryrefslogtreecommitdiff
path: root/telegram/client.go
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2023-01-23 10:30:02 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2023-01-23 10:30:02 +0300
commit18a17cb7a8abe0180bb4b1e8dd1f468956796922 (patch)
tree324dbaaf8b968b5b466ff5b9458eb777309d4dfb /telegram/client.go
parentd66f87485d2a96ad9723c537c3fd11ee27579104 (diff)
Fix crash on login
Diffstat (limited to 'telegram/client.go')
-rw-r--r--telegram/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/telegram/client.go b/telegram/client.go
index 49816db..71d8125 100644
--- a/telegram/client.go
+++ b/telegram/client.go
@@ -63,7 +63,7 @@ type Client struct {
}
type clientLocks struct {
- authorizationReady sync.WaitGroup
+ authorizationReady sync.Mutex
chatMessageLocks map[int64]*sync.Mutex
resourcesLock sync.Mutex
}