Use notes as shortcut title

This commit is contained in:
M66B
2021-04-11 17:38:57 +02:00
parent 923b6f5bee
commit 6d840f6b6b

View File

@@ -4949,7 +4949,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
Bitmap.Config.ARGB_8888);
}
String label = (TextUtils.isEmpty(message.subject) ? context.getString(R.string.app_name) : message.subject);
String label;
if (!TextUtils.isEmpty(message.notes))
label = message.notes;
else if (!TextUtils.isEmpty(message.subject))
label = message.subject;
else
label = context.getString(R.string.app_name);
IconCompat icon = IconCompat.createWithBitmap(bm);
String id = "message:" + message.id;