fix in CommandsPlugin double commands getting

This commit is contained in:
2022-07-24 11:46:06 +06:00
parent 814603f996
commit a3a528bd19
2 changed files with 3 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ object CommandsPlugin : Plugin {
commandsKeeper.getKeys().forEach {
val commands = commandsKeeper.getCommands(it)
log.d { "Start setup initially passed commands for key $it: ${commands ?.joinToString { it.command }}" }
setScopeCommands(it, commandsKeeper.getCommands(it))
setScopeCommands(it, commands)
}
log.d { "Complete setup initially passed commands" }
}