mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Fixed two strings incorrectly being merged together.
This commit is contained in:
@@ -86,7 +86,7 @@ public class GB {
|
||||
Boolean connected = device.isInitialized();
|
||||
NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
|
||||
builder.setContentTitle(deviceName)
|
||||
.setTicker(deviceName + text)
|
||||
.setTicker(deviceName + " - " + text)
|
||||
.setContentText(text)
|
||||
.setSmallIcon(connected ? R.drawable.ic_notification : R.drawable.ic_notification_disconnected)
|
||||
.setContentIntent(getContentIntent(context))
|
||||
|
||||
Reference in New Issue
Block a user