Fixed build error

This commit is contained in:
Nite 2025-04-04 11:29:06 +02:00
parent 84aa0b5cce
commit 24fbfa0930
No known key found for this signature in database
GPG Key ID: 1D1AD59B1C6386C1

View File

@ -455,10 +455,10 @@ class NavigationActivity : ScopeActivity() {
return findNavController(R.id.nav_host_fragment).navigateUp(appBarConfiguration)
}
override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
when (intent?.action) {
when (intent.action) {
Constants.INTENT_PLAY_RANDOM_SONGS -> {
playRandomSongs()
}