Fixed crash on share due to lack of notification icon

This commit is contained in:
Sean 2024-12-19 08:46:39 -05:00
parent bb9053fb61
commit bb97727f01

View file

@ -100,7 +100,7 @@ class ShareActivity : AppCompatActivity() {
val notification = NotificationCompat.Builder(this, channelId) val notification = NotificationCompat.Builder(this, channelId)
.setContentTitle("Mealie URL Share") .setContentTitle("Mealie URL Share")
.setContentText(message) .setContentText(message)
//.setSmallIcon(R.drawable.ic_notification) // Replace with your notification icon .setSmallIcon(R.drawable.baseline_error_24) // Replace with your notification icon
.setAutoCancel(true) .setAutoCancel(true)
.build() .build()