Compare commits

...

1 Commits

Author SHA1 Message Date
jens 7a9e03ed4d Removed redundant space character in notification 2026-06-11 16:51:57 +02:00
@@ -672,7 +672,11 @@ public class AutomationService extends Service implements OnInitListener
lastRuleString = instance.getResources().getString(R.string.lastRule) + " n./a.";
}
String textToDisplay = bodyText + " " + lastRuleString;
String textToDisplay;
if(bodyText.length() > 0)
textToDisplay = bodyText + " " + lastRuleString;
else
textToDisplay = lastRuleString;
if(notificationBuilder == null)
notificationBuilder = createServiceNotificationBuilder();