Experiment

This commit is contained in:
M66B 2022-10-31 21:20:21 +01:00
parent 84809619b2
commit aea1b887eb
1 changed files with 6 additions and 0 deletions

View File

@ -5984,6 +5984,12 @@ class Core {
// Device
if (!notify_messaging) {
StringBuilder sbm = new StringBuilder();
if (message.keywords != null && BuildConfig.DEBUG)
for (String keyword : message.keywords)
if (keyword.startsWith("!"))
sbm.append(Html.escapeHtml(keyword)).append(": ");
if (!TextUtils.isEmpty(message.subject))
sbm.append("<em>").append(Html.escapeHtml(message.subject)).append("</em>").append("<br>");