We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8729cd2 commit 2222f81Copy full SHA for 2222f81
interop/src/clients/android-interop/src/main/java/com/wire/androidinterop/MainActivity.kt
@@ -16,10 +16,10 @@ class MainActivity : ComponentActivity() {
16
println("Ready")
17
}
18
19
- override fun onNewIntent(intent: Intent?) {
+ override fun onNewIntent(intent: Intent) {
20
super.onNewIntent(intent)
21
22
- if (intent == null || intent.action?.compareTo(Intent.ACTION_RUN) != 0) {
+ if (intent.action?.compareTo(Intent.ACTION_RUN) != 0) {
23
return
24
25
0 commit comments