Browse Source

Fix compilation issue.

pull/2726/head
Benoit Marty 5 months ago committed by Benoit Marty
parent
commit
e052bc99f6
  1. 4
      features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt

4
features/call/src/main/kotlin/io/element/android/features/call/ui/ElementCallActivity.kt

@ -121,13 +121,11 @@ class ElementCallActivity : NodeComponentActivity(), CallScreenNavigator { @@ -121,13 +121,11 @@ class ElementCallActivity : NodeComponentActivity(), CallScreenNavigator {
override fun onConfigurationChanged(newConfig: Configuration) {
super.onConfigurationChanged(newConfig)
updateUiMode(newConfig)
}
override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
setCallType(intent)
}

Loading…
Cancel
Save