Skip to content
Snippets Groups Projects
Verified Commit 301d5341 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct default value

parent 6c1cd6a5
No related branches found
No related tags found
No related merge requests found
Pipeline #2972 failed
...@@ -27,7 +27,7 @@ data class NetworkState( ...@@ -27,7 +27,7 @@ data class NetworkState(
val myNick: String? = "", val myNick: String? = "",
val latency: Int = 0, val latency: Int = 0,
val networkName: String = "<not initialized>", val networkName: String = "<not initialized>",
val currentServer: String? = null, val currentServer: String? = "",
val connected: Boolean = false, val connected: Boolean = false,
val connectionState: ConnectionState = ConnectionState.Disconnected, val connectionState: ConnectionState = ConnectionState.Disconnected,
val ircUsers: Map<String, IrcUser> = emptyMap(), val ircUsers: Map<String, IrcUser> = emptyMap(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment