disable sound on download notifications

This commit is contained in:
Akinwale Ariwodola 2019-12-13 15:10:02 +01:00
parent a1bc3fcd7e
commit fb3a34c871

View file

@ -86,6 +86,7 @@ public class DownloadManager {
NotificationChannel channel = new NotificationChannel(
NOTIFICATION_CHANNEL_ID, "LBRY Downloads", NotificationManager.IMPORTANCE_LOW);
channel.setDescription("LBRY file downloads");
channel.setSound(null, null);
notificationManager.createNotificationChannel(channel);
}
}