Merge pull request #1160 from vector-im/feature/bma/fixOpeningRoomCrash
Add missing plugin forward between `LoggedInAppScopeFlowNode` and `LoggedInFlowNode`
This commit is contained in:
commit
e519029eba
2 changed files with 3 additions and 1 deletions
|
|
@ -102,7 +102,8 @@ class LoggedInAppScopeFlowNode @AssistedInject constructor(
|
||||||
plugins<Callback>().forEach { it.onOpenBugReport() }
|
plugins<Callback>().forEach { it.onOpenBugReport() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
createNode<LoggedInFlowNode>(buildContext, listOf(callback))
|
val nodeLifecycleCallbacks = plugins<NodeLifecycleCallback>()
|
||||||
|
createNode<LoggedInFlowNode>(buildContext, nodeLifecycleCallbacks + callback)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
1
changelog.d/1160.bugfix
Normal file
1
changelog.d/1160.bugfix
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Fix crash when opening any room.
|
||||||
Loading…
Add table
Add a link
Reference in a new issue