From 56afde24dbd187491c7ab3602dc6e1d46e252f4e Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Mon, 6 Aug 2018 18:16:50 +0100 Subject: [PATCH] update service description --- src/main/java/io/lbry/browser/LbrynetService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/io/lbry/browser/LbrynetService.java b/src/main/java/io/lbry/browser/LbrynetService.java index 5cdea759..a4af3f67 100644 --- a/src/main/java/io/lbry/browser/LbrynetService.java +++ b/src/main/java/io/lbry/browser/LbrynetService.java @@ -47,7 +47,7 @@ public class LbrynetService extends PythonService { @Override protected void doStartForeground(Bundle extras) { String serviceTitle = extras.getString("serviceTitle"); - String serviceDescription = "The LBRY Browser daemon service is running in the background."; + String serviceDescription = "The LBRY service is running in the background."; Context context = getApplicationContext(); @@ -55,7 +55,7 @@ public class LbrynetService extends PythonService { (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); NotificationChannel channel = new NotificationChannel( NOTIFICATION_CHANNEL_ID, "LBRY Browser", NotificationManager.IMPORTANCE_LOW); - channel.setDescription("LBRY Broswer daemon service notification channel"); + channel.setDescription("LBRY service notification channel"); channel.setShowBadge(false); notificationManager.createNotificationChannel(channel);