aboutsummaryrefslogtreecommitdiff
path: root/telegram/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'telegram/client.go')
-rw-r--r--telegram/client.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/telegram/client.go b/telegram/client.go
index 5220c2d..9a98be7 100644
--- a/telegram/client.go
+++ b/telegram/client.go
@@ -48,6 +48,7 @@ type Client struct {
options []client.Option
me *client.User
+ resource string
xmpp *xmpp.Component
jid string
Session *persistence.Session
@@ -115,8 +116,14 @@ func NewClient(conf config.TelegramConfig, jid string, component *xmpp.Component
IgnoreFileNames: false,
}
+ resource := conf.Tdlib.Client.DeviceModel
+ if resource == "" {
+ resource = "telegabber"
+ }
+
return &Client{
parameters: &parameters,
+ resource: resource,
xmpp: component,
jid: jid,
Session: session,