bug 2248168: populate the recipient field when texting from the fast track.

- need to call Conversation.setRecipient() when creating a new Conversation object.
diff --git a/src/com/android/mms/data/Conversation.java b/src/com/android/mms/data/Conversation.java
index e5d13e9..d70559e 100644
--- a/src/com/android/mms/data/Conversation.java
+++ b/src/com/android/mms/data/Conversation.java
@@ -131,7 +131,8 @@
 
             long threadId = getOrCreateThreadId(context, recipients);
             conv = new Conversation(context, threadId);
-
+            conv.setRecipients(recipients);
+ 
             try {
                 Cache.put(conv);
             } catch (IllegalStateException e) {