fix: background service stops when using add to queue/playlist/download share action

This commit is contained in:
Bnyro 2024-10-02 12:46:41 +02:00
parent f10afe7bd8
commit c0dd9e802f
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class AddToPlaylistActivity : BaseActivity() {
}?.getStringExtra(IntentData.videoId)
if (videoId == null) {
finishAndRemoveTask()
finish()
return
}

View File

@ -33,6 +33,6 @@ class AddToQueueActivity : BaseActivity() {
startActivity(newIntent)
}
finishAndRemoveTask()
finish()
}
}

View File

@ -41,7 +41,7 @@ class DownloadActivity : BaseActivity() {
)
}.show(supportFragmentManager, null)
} else {
finishAndRemoveTask()
finish()
}
}
}