Fixed two strings incorrectly being merged together.

This commit is contained in:
TaaviE
2018-01-21 22:43:10 +01:00
committed by Carsten Pfeiffer
parent a74ffca249
commit 32dcdc24ba
@@ -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))