fix(core): forward skipConversationUpdates
and updates
options to the client
This commit is contained in:
parent
db58913fa1
commit
92ab16cead
4 changed files with 8 additions and 0 deletions
|
@ -73,6 +73,8 @@ export class TelegramClient extends TelegramClientBase {
|
|||
super({
|
||||
client: new BaseTelegramClient(opts),
|
||||
disableUpdates: opts.disableUpdates,
|
||||
skipConversationUpdates: opts.skipConversationUpdates,
|
||||
updates: opts.updates,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,8 @@ export class TelegramClient extends TelegramClientBase {
|
|||
super({
|
||||
client: new BaseTelegramClient(opts),
|
||||
disableUpdates: opts.disableUpdates,
|
||||
skipConversationUpdates: opts.skipConversationUpdates,
|
||||
updates: opts.updates,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -85,6 +85,8 @@ export class TelegramClient extends TelegramClientBase {
|
|||
super({
|
||||
client: new BaseTelegramClient(opts),
|
||||
disableUpdates: opts.disableUpdates,
|
||||
skipConversationUpdates: opts.skipConversationUpdates,
|
||||
updates: opts.updates,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -67,6 +67,8 @@ export class TelegramClient extends TelegramClientBase {
|
|||
super({
|
||||
client: new BaseTelegramClient(opts),
|
||||
disableUpdates: opts.disableUpdates,
|
||||
skipConversationUpdates: opts.skipConversationUpdates,
|
||||
updates: opts.updates,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue