mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Various fixes
This commit is contained in:
parent
e12e096919
commit
ddd724a5af
1 changed files with 3 additions and 3 deletions
|
|
@ -138,7 +138,7 @@ private final class AuthConfirmationSheetContent: CombinedComponent {
|
|||
self.disposables.dispose()
|
||||
|
||||
if !self.inProgress {
|
||||
if let (context, _) = self.forcedAccount {
|
||||
if let (context, _) = self.forcedAccount, context !== self.context {
|
||||
context.account.shouldBeServiceTaskMaster.set(.single(.never))
|
||||
}
|
||||
}
|
||||
|
|
@ -218,7 +218,7 @@ private final class AuthConfirmationSheetContent: CombinedComponent {
|
|||
guard let self else {
|
||||
return
|
||||
}
|
||||
if let (context, _) = self.forcedAccount {
|
||||
if let (context, _) = self.forcedAccount, context !== self.context {
|
||||
context.account.shouldBeServiceTaskMaster.set(.single(.never))
|
||||
}
|
||||
|
||||
|
|
@ -237,7 +237,7 @@ private final class AuthConfirmationSheetContent: CombinedComponent {
|
|||
guard let self else {
|
||||
return
|
||||
}
|
||||
if let (context, _) = self.forcedAccount {
|
||||
if let (context, _) = self.forcedAccount, context !== self.context {
|
||||
context.account.shouldBeServiceTaskMaster.set(.single(.never))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue