Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed Jul 2, 2024
1 parent 9b2d935 commit 5592a23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ object KorgeReloadAgent {
//val httpPort = portStr.toIntOrNull() ?: 22011
val httpPort = portOrUnixStr.toIntOrNull() ?: -1
val unixSocketPath = if (portOrUnixStr.toIntOrNull() == null) portOrUnixStr else null
val continuousCommand = continuousCommandStr.split(CMD_SEPARATOR)
val continuousCommand = if (continuousCommandStr.isEmpty()) emptyList() else continuousCommandStr.split(CMD_SEPARATOR)
val enableRedefinition = enableRedefinitionStr.toBoolean()
val rootFolders = argsStr.split(CMD_SEPARATOR)

Expand Down

0 comments on commit 5592a23

Please sign in to comment.