1
0
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:
Jesse Vincent 2010-01-26 02:48:22 +00:00
parent c237ffc803
commit 68efec3782

View File

@ -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
{