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

Fix bug where rpchandler wasn’t initialized correctly

parent be62ba85
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ kotlinPoetVersion=1.8.0
kspVersion=1.5.10-1.0.0-beta01
GROUP=de.justjanne.libquassel
VERSION_NAME=0.6.0
VERSION_NAME=0.6.1
POM_URL=https://git.kuschku.de/justJanne/libquassel
POM_SCM_URL=https://git.kuschku.de/justJanne/libquassel
......
......@@ -20,6 +20,10 @@ import de.justjanne.libquassel.protocol.variant.QVariantMap
open class RpcHandler(
session: Session? = null
) : SyncableObject(session, ""), RpcHandlerStub {
init {
initialized = true
}
override fun bufferInfoUpdated(bufferInfo: BufferInfo) {
session?.bufferSyncer?.bufferInfoUpdated(bufferInfo)
}
......
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