Use previous values for channel id

This commit is contained in:
tzugen 2022-04-20 21:56:30 +02:00
parent 2aaa3c2119
commit c2ac1d436f
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 3 additions and 3 deletions

View File

@ -148,9 +148,9 @@ internal class MediaNotificationProvider(context: Context) :
}
companion object {
private const val NOTIFICATION_ID = 1001
private const val NOTIFICATION_CHANNEL_ID = "default_channel_id"
private const val NOTIFICATION_CHANNEL_NAME = "Now playing"
private const val NOTIFICATION_CHANNEL_ID = "org.moire.ultrasonic"
private const val NOTIFICATION_CHANNEL_NAME = "Ultrasonic background service"
private const val NOTIFICATION_ID = 3033
private fun getSmallIconResId(): Int {
return R.drawable.ic_stat_ultrasonic
}