mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 19:52:17 -05:00
Improve our "got mail" notifications to include "To:" when they're for messages we've sent
This commit is contained in:
parent
c237ffc803
commit
68efec3782
@ -4164,7 +4164,7 @@ public class MessagingController implements Runnable
|
||||
String to = rcpts.length > 0 ? rcpts[0].toFriendly() : null;
|
||||
if (to != null)
|
||||
{
|
||||
messageNotice.append(to + ": "+subject);
|
||||
messageNotice.append( String.format(context.getString(R.string.message_list_to_fmt), to) +": "+subject);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user