disable sound on download notifications
This commit is contained in:
parent
a1bc3fcd7e
commit
fb3a34c871
1 changed files with 1 additions and 0 deletions
|
@ -86,6 +86,7 @@ public class DownloadManager {
|
||||||
NotificationChannel channel = new NotificationChannel(
|
NotificationChannel channel = new NotificationChannel(
|
||||||
NOTIFICATION_CHANNEL_ID, "LBRY Downloads", NotificationManager.IMPORTANCE_LOW);
|
NOTIFICATION_CHANNEL_ID, "LBRY Downloads", NotificationManager.IMPORTANCE_LOW);
|
||||||
channel.setDescription("LBRY file downloads");
|
channel.setDescription("LBRY file downloads");
|
||||||
|
channel.setSound(null, null);
|
||||||
notificationManager.createNotificationChannel(channel);
|
notificationManager.createNotificationChannel(channel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue