setupBotPlugin now works synchronously

This commit is contained in:
InsanusMokrassar 2023-02-12 01:29:45 +06:00
parent 328a8b215c
commit 3592a5907c
2 changed files with 12 additions and 12 deletions

View File

@ -2,6 +2,8 @@
## 3.4.1
* `setupBotPlugin` now works synchronously
## 3.4.0
* `Versions`:

View File

@ -63,8 +63,7 @@ data class PlaguBot(
}
override suspend fun BehaviourContextWithFSM<State>.setupBotPlugin(koin: Koin) {
config.plugins.map { plugin ->
launch {
config.plugins.forEach { plugin ->
runCatchingSafely {
logger.i("Start loading of $plugin")
with(plugin) {
@ -76,7 +75,6 @@ data class PlaguBot(
logger.i("Complete loading of $plugin")
}
}
}.joinAll()
}
/**