Fixed notification newlines

This commit is contained in:
M66B 2018-09-02 08:36:02 +00:00
parent f634d57404
commit 0dc45a8d1b
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ public class ServiceSynchronize extends LifecycleService {
if (!TextUtils.isEmpty(message.subject))
sb.append(": ").append(message.subject);
sb.append(" ").append(df.format(new Date(message.sent)));
sb.append("\n");
sb.append("<br>");
}
builder.setStyle(new Notification.BigTextStyle().bigText(Html.fromHtml(sb.toString())));