1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-29 04:47:48 +00:00

fix: new BehaviourContext ignored

This commit is contained in:
Alex 2022-05-02 01:16:24 +03:00
parent a52f31f4c9
commit db14eee3b6

View File

@ -128,7 +128,7 @@ suspend fun <T, BC : BehaviourContext> BC.doInSubContextWithUpdatesFilter(
upstreamUpdatesFlow = updatesUpstreamFlow upstreamUpdatesFlow = updatesUpstreamFlow
).run { ).run {
withContext(coroutineContext) { withContext(coroutineContext) {
behaviourContextReceiver().also { if (stopOnCompletion) stop() } (this@run as BC).behaviourContextReceiver().also { if (stopOnCompletion) stop() }
} }
} }