Status Update
Comments
di...@gmail.com <di...@gmail.com> #2
Information redacted by Android Beta Feedback.
di...@gmail.com <di...@gmail.com> #3
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Please upgrade to the latest release from the link
se...@gmail.com <se...@gmail.com> #4
install Android 16 as I want to leave beta.
<buganizer-system@google.com> schrieb am Do., 27. Feb. 2025, 08:55:
mi...@cox.net <mi...@cox.net> #5
Thank you for reporting this issue. We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
st...@gmail.com <st...@gmail.com> #6
Thanks for reporting this issue.
-
We are handling "No more paying via Wallet because the system is not up to date" wallet issue here.
-
Please file a separate ticket for "Upgrade was never offered to install android 16" with details.
di...@gmail.com <di...@gmail.com> #7
After upgrading to stable the issue persists.
me...@gmail.com <me...@gmail.com> #8
My personal experiences:
Text being sent to unintended recipient, when responding to an existing conversation(text). Unintended recipient is NOT someone I have ever sent a text to previously. The 2 contacts in question do not have any similarities in the digits of their numbers, other than the area code.
I have 763 messages in my inbox, 782 in the outbox
Galaxy S 2.1-update 1
la...@gmail.com <la...@gmail.com> #9
I have these same circumstances each time it happens -
- I will be typing a response in thread A, when I get a new text from thread B
- I pause mid-sentance in thread A, use the pull down notification bar to switch to thread B
- I do not type a response to the new message in thread B, swap back over to thread A and finish the sentance I left off on. I then send that to thread A and it goes to the contact from thread B in error, even though the log clearly shows that the text went to the correct conact in thread A.
This happened to me a few moments ago. I was texting with my wife. I received a new SMS notification. I pulled down the notification bar and clicked on the message. It was an FB notification that my wife had changed her status. I went back to the message I was typing to my wife, finished the sentence, and sent it. My wife then texts me back asking if I meant to send a very personal message to her FB status! SCARY!!!
di...@gmail.com <di...@gmail.com> #10
My steps to replicate are as below.
Seems to be pretty consistent that the message sent in step 09 will go to a random contact; in my limited testing, it usually goes to the number involved at steps 05 and 06.
01) Stop Messaging App.
02) Clear Messaging App data
03) Access messaging app, send messages.
04) Establish messages were sent to correct addresses.
05) Send message to a number not in your contacts.
06) Reply from the number not in your contacts (I haven't established if this is a required step yet)
07) Read reply, don't delete thread.
08) Send SMS to your device, from another device that is in your contacts.
09) Reply to SMS.
10) Check message details of your sent message.
11) Repeat steps 08-10 a couple of times.
A factor in this, is I think it might only be short numbers that cause this issue.
I'm using my banks automated SMS service (880).
This would explain why it happens when people have facebook/twitter SMS notifications enabled.
I'll debug it all properly on the weekend when I have some time.
ra...@gmail.com <ra...@gmail.com> #11
re...@gmail.com <re...@gmail.com> #12
d8...@gmail.com <d8...@gmail.com> #13
az...@gmail.com <az...@gmail.com> #14
This is definitely not a problem with "fat-fingering", nor is this a problem with any other user-caused issues. This is a serious issue that appears to be a problem with the contacts management within Android.
Usually, the message is sent to the correct recipient, but shown in the wrong thread. However, occasionally, it is sent to the wrong recipient...and shown as going to that wrong recipient. Consequently, I never know if it was sent correctly or not.
HTC Evo 4g with Froyo.
jp...@gmail.com <jp...@gmail.com> #15
In my case I can confirm:
1. I had a text message in my Inbox from a short number (c/ref post #9)
2. The recipient was a normal mobile number but not someone I had texted previously (they had erroneously texted me a week prior)
HTC Desire running Froyo.
fo...@gmail.com <fo...@gmail.com> #16
Priority should be changed to HIGHEST. I can't believe that it's being taken so lightly.
Here's some interesting commentary from another board:
It seems like there are two interesting artifacts associated with this code. First, the sEmptyContactList variable is static. I believe this means it is only initialized once, when the class loads or at its first run through. Said differently, it will only evaluate to NULL once - the first time this code executes the nested if statement. That said, the fact that it is a pointer means the some other module could set it back to NULL, but I would imagine (because it is a pointer) that this would only occur if the conversation is deleted. I don't think Java allows explicit delete / free statements.
Here's what I *think* is going on. When there is an existing "conversation" (as determined by the Recipient Editor not being open), the code uses that conversation to determine the recipient list for the message. No problem. When the Recipient Editor is open, the code assumes that there isn't a recipient list. In that case, the getRecipient() method returns an empty list that is used to build a new conversation. But, here's my thoughts of a problem. The first time through, this code would seem to work fine. But the second time through, the code would simply return the same pointer as it did the first time through. (Why? Because sEmptyContactList is not NULL, but has the previously generated value.) It's not clear what would happen in that case, but since getRecipeint() would point to the first conversation and not a new one, I would imagine that wouldn't be good. It would suggest that a new message could get associated with an entirely different conversation (e.g., the first one) rather than being identified as a new conversation.
Also, it looks like there's an assumption that getRecipients will return NULL when the Recipients editor is open. But, as I've mentioned, I think that only occurs the first time that the code runs after start-up. Once the class is live, the "static" nature of the variable means that it won't be NULL again. I'm not sure if this is anything or if I'm barking up the wrong tree. But I thought I'd throw this out there and see what other people think. (I would have to analyzes each of the getRecipient() calls to figure out exactly under which conditions, if any, a problem might arise.)
Anyway, here's the code in question:
<pre>
private static ContactList sEmptyContactList;
private ContactList getRecipients() {
// If the recipients editor is visible, the conversation has
// not really officially 'started' yet. Recipients will be set
// on the conversation once it has been saved or sent. In the
// meantime, let anyone who needs the recipient list think it
// is empty rather than giving them a stale one.
if (isRecipientsEditorVisible()) {
if (sEmptyContactList == null) {
sEmptyContactList = new ContactList();
}
return sEmptyContactList;
}
return mConversation.getRecipients();
}
</pre>
Although sEmptyContactList is static, this is the only place in the class where it is used. So, shouldn't this method either 1) return a new ContactList() pointer everytime the editor is open or 2) if they want to see what is in the editor window, shouldn't they call mRecipientsEditor.constructContactsFromInput() ? If the latter, then my thinking is that the code should look something like:
<pre>
private ContactList getRecipients() { // If the recipients editor is visible, the conversation has // not really officially 'started' yet. Recipients will be set // on the conversation once it has been saved or sent. In the // meantime, let anyone who needs the recipient list think it // is empty rather than giving them a stale one. if (isRecipientsEditorVisible()) { if (mRecipientsEditor.getRecipientCount() == 0) { return = new ContactList(); } else { return mRecipientsEditor.constructContactsFromInput(); } } return mConversation.getRecipients(); }
</pre>
Thoughts?
P.S. Sorry if I'm confusing my "pointer" versus "reference" terminology. I'm was an old-school C++ programmer back in the day. :-)
P.S. Sorry I can't seem to get the formatting right for the code. But I hope you get the point.
Follow-up To Possible Problem:
I've read through some of the code and it seems like there is an edge condition that can cause the problem we are seeing. It happens in this code: (Sorry about the unformatting).
@Override
1913 public void onSaveInstanceState(Bundle outState) {
1914 super.onSaveInstanceState(outState);
1915
1916 outState.putString("recipients", getRecipients().serialize());
1917
1918 mWorkingMessage.writeStateToBundle(outState);
1919
1920 if (mExitOnSent) {
1921 outState.putBoolean("exit_on_sent", mExitOnSent);
1922 }
1923 }
Generally, in the code a check is made prior to calling getRecipients(). This call is to "isRecipientEditorVisible()". When this method returns TRUE, then getRecipients() isn't called, which means that the "==NULL" statement in getRecipients() is not executed. So, this is fine - since that method is not called.
However, in this method (above), getRecipients() is called without first checking if "isRecipientsEditorVisible()". This means that in the case where it is visible we will execute the nested if statements. The first time through, it would work fine since the variable is initialized to null and, hence, will return a new contactlist. But the second (and subsequent) time through, because the variable is static, it will already have a non-null value and that already. And it is the value of this existing contactlist that will be returned rather than a new empty one.
I am assuming that this OnSaveInstanceState method is an event handler. And I'm not sure what would trigger this event. But perhaps this is something worth exploring.
pe...@gmail.com <pe...@gmail.com> #17
recipient (as witnessed by View Report), but it got filed under the
conversation of another contact. Steps I did:
- pull up the messages application
- select conversation with contact A
- tap message field and type text
- tap send
- back in the conversation summary screen, surprised to see that
conversation with contact B is on the top of the list as most recent
- opening the conversation, indeed the text I have just sent is at the end
of the conversation
- tap View Report and the phone number listed is indeed contact A
- text was really sent to contact A's number because I later received a
reply
HTC Desire, latest Froyo
HTH,
Peter
st...@gmail.com <st...@gmail.com> #18
---------------------------------
@DezignsNZ. One of my Java experts expressed concern with this code segment after I walked it through with him. His thought was that the original programmer was trying to be overly efficient and, in the process, perhaps has made a mistake. Specifically, his understanding seems to align with my line of reasoning.
Basically, the statement:
sEmptyContactsList = new ContactList();
will create the “storage unit” for the sEmptyContactsList object. This ContactList object is initially empty, which is what we want. And if sEmptyContactsList wasn’t “static”, I think we would be fine with the getRecipient() method. But since sEmptyContactsList is static (or, as you've mentioned - a singleton), I think it will lead to a problem. Using the following scenario, here’s why. Let’s execute the code:
ContactList recipients = getRecipients();
This is fine. Let’s assume that isRecipientEditorVisible() is true. So, the first time through, sEmptyContactsList is NULL because the storage space hasn’t been allocated. So, the getRecipients() invocation will end with the “return sEmptyContactList” statement after executing the "new" statement. This is what we want. And it is the “=” operator that also tells the recipients object that this is the storage space it should also use. It is my belief that, both recipients and sEmptyContactsList both now represent the exact same storage unit - which is empty. But, since sEmptyContactList is static, any change made to the recipients object is no different than our using the sEmptyContactsList object. they both represent the same storage unit. So, let’s now assume that we say something like:
recipient.addNewContact(“ScratchSF”).
Next, we execute
ContactList recipients = getRecipients();
a second time. This next time through the code, we will get to the if statement in getRecipients() to see if the editor is present. Again, let’s assume it is. Then we will check to see if sEmptyContactsList is NULL. It is not (the second time through) because it is static. It has a storage unit assigned to it from the “new” statement the first time through. So, we drop out of the if statement and go to the point where we execute the “return sEmptyContactsList;” statement. My belief is that we are actually returning a list that contains “ScratchSF” rather than an empty list (and rather than returning what is actually in the editor window). I would prefer to have getRecipients return what is in the editor window or NULL, but in this case I think it could return “ScratchSF” which isn’t what we want.
Clearly this is something I will need to test further. So, I’ll see if I can configure the SDK on my laptop – perhaps over the weekend – and put this code to the test. That said, if we assume that my line of reasoning pans out, there are three possible solutions:
1. Do not make sEmptyContactList static. If the intent is to return an empty list, there’s no reason to make this variable static. Yes, the programmer is trying to be efficient, but this code is dependent on user actions – (e.g., isn't executed all that often). So it really doesn't need this this efficiency for the amount of risk I think it introduces.
2. Modify the nested if statements as I’ve indicated in a previous post. That would ensure that we return what is visible in the editor window or it would return an empty list. And it would remove the risk I believe exists in returning stale data.
3. Clear out the ContactList (e.g., “sEmptyContactsList.clearList()”, assuming a clearList() method exists) before calling “return sEmptyContactList;” This will guarantee that our list is, in fact, empty. While it still could mean that in certain cases we could return an empty list when, in fact, there is something in the editor window, it would not lead to the problem we seem to be experiencing.
Since this forum is going to close soon to new posts, perhaps we should take the conversation here:
Thoughts?
au...@gmail.com <au...@gmail.com> #19
st...@gmail.com <st...@gmail.com> #20
------------------------------
@DezignsNZ – Thanks for looking at the code and testing a few things out. I think your insight is helping further my understanding of what is going on. While I understand your comment about a new ComposeMessageActivity object being created, I think there is still a situation where the problem occurs.
First, let me explain why I don’t think the problem occurs very often. One surface, if the problem as a big as I make it sound, we would see the problem just about every time getRecipient() is called when the Recipient Editor Window is open. We know from our experience that this isn’t the case. I believe that the reason for this is that prior to most invocations of getRecipient(), a check is first made to confirm that the Editor Window is not active. Thus the code I suspect as being problematic within the getRecipient() method is never executed. Here’s an example of such an invocation:
3408 ContactList recipients = isRecipientsEditorVisible() ?
3409 mRecipientsEditor.constructContactsFromInput() : getRecipients();
This type of invocation will always execute the
return mConversation.getRecipients();
statement within the getRecipients() method. However, there are 3 or 4 cases where getRecipients() is called without first checking isRecipientsEditorVisible(). One of those places is within the onSaveInstanceState() method.
1913 public void onSaveInstanceState(Bundle outState) {
1914 super.onSaveInstanceState(outState);
1915
1916 outState.putString("recipients", getRecipients().serialize());
1917
1918 mWorkingMessage.writeStateToBundle(outState);
1919
1920 if (mExitOnSent) {
1921 outState.putBoolean("exit_on_sent", mExitOnSent);
1922 }
1923 }
1924
Here’s where things get interesting and why I think the problem can span multiple instances of ComposeMessageActivity.
1. A call is made to getRecipients() and the editor is open. Let’s assume it has “ScratchSF” in the window. The first time through this creates a new sEmptyContactsList object, which gets returned. This is fine and what we expect
2. The storage that was just returned is, at some point, given the value “ScratchSF”. This means that sEmptyContactsList now has “ScratchSF” in it. We then send that message and it send normally.
3. Assume that in the middle of entering a new message, a new event happens (e.g., a new message is received). I think that this will trigger the onSaveInstanceState() method on our current message. Assume that “DezignsNZ” is currently in the Recipient Editor window.
5. onSaveInstanceState() calls getRecipients(). Since the Editor Window is open, we will execute the first IF statement. Since sEmptyContactsList is not NULL, (because it was previously given a value with the new Statement), we will just fall out of the If statement and perform the return. However, because sEmptyContactList is static, we are going to return ScratchSF, not NULL and not DezignsNZ, which is currently in the Editor Window.
Here’s where I think things get interesting, because we have essentially saved bad information.
6. So, if we use either a new ComposeMessageActivtity object or the same object, when we call “inialize()” it will then call “initActivityState()”. I believe that it is this method that then reads the previously saved information. If that’s true, then at this point, we have now brought in the wrong information – regardless of it being the same or different ComposeMessageActivity object. And is it right here where the problem *can* occur. If we then simply press send *before* we do something that triggers one of the “safe” invocations of getRecipients(), we will send the message to the wrong recipient. Of course, since the recipient designates the conversation, we could simply associate the message with the wrong conversation at this point.
So, I think there is a very small window within which this error lives. And I think that’s why we don’t see it a lot. All of these conditions have to occur in just the right way.
Now, this doesn’t explain the case where a reply to an “existing conversation” (e.g., where the Recipients Editor is not visible) could get sent to the wrong recipient; and perhaps that is what was fixed in June.
Thoughts?
-ScratchSF
---------------------------
@ScratchSF I found something interesting in the Activity documentation.
Note that it is important to save persistent data in onPause() instead of onSaveInstanceState(Bundle) because the later is not part of the lifecycle callbacks, so will not be called in every situation as described in its documentation.
Now, from what I saw in the method tracer, the ComposeMessageActivity was always a new fresh one. Perhaps in some instances, onSaveInstanceState IS being called and it's then reviving a saved one... which is the bad data? Sounds logical.
I'll do some more digging around with it today :D
As a side note, I also had the issue occur to me again this morning; it sent the message to........ Facebook SMS gateway (SMS shortcode 3223). Which I only reactivated yesterday. I had a rather personal and interesting Facebook status for about 20 mins... doh!
-DezignsNZ
to...@googlemail.com <to...@googlemail.com> #21
would using a third party messaging app circumnavigate this potentially huge flaw in the code? i've just downloaded 'chomp sms' in an effort to regain control of who receives my messages. i dont know how much input this app has in the messaging process. it certainly stops my galaxy s from converting a message longer than 3 texts into an MMS, which is a nice money saver for me as a idont receive free mms texts with t-mobile in the uk.
apologies again if this is a fruitless avenue to go down
tom
galaxy s, eclair 2.1, tmobile, uk
st...@gmail.com <st...@gmail.com> #22
wf...@gmail.com <wf...@gmail.com> #23
an...@gmail.com <an...@gmail.com> #24
mo...@gmail.com <mo...@gmail.com> #25
JG
au...@gmail.com <au...@gmail.com> #26
au...@gmail.com <au...@gmail.com> #27
au...@gmail.com <au...@gmail.com> #28
bo...@gmail.com <bo...@gmail.com> #29
ac...@gmail.com <ac...@gmail.com> #30
They're very interested in fixing this, but can't figure out the problem. I've been feeding them as much info as possible and they are aware of this issue number as well as the old thread on the (now closed) nexus one google help forum.
sj...@gmail.com <sj...@gmail.com> #31
as...@gmail.com <as...@gmail.com> #32
Back out of the draft and go back in again.
That is the only scenario where my messages have gone to another person.
Also, delete all conversation threads except those of your closest friends, who you would not mind sending erroneous msgs to.
It is good that I deleted threads of ex girlfriends, etc. Just as a precaution.
Surprised there is still no fix for this annoying problem.
da...@gmail.com <da...@gmail.com> #33
Location, Australia. I have run both 2.1, 2.1 upgrade and 2.2 and the issue is not fixed with the upgrade. Like everyone else the problem appears when you have three of four messages in your message inbox, I then go to send a message to person x, and person y gets the message. To google, this is a major issue with your OS as it appears on multiple phones across multiple carriers. I for one want to see a fix for this HUGE issue or I am going to return my phone and ask for a full refund on the grounds of a faulty operating system. I was so excited to go android after having an Iphone for many years, and now I am totally regretting the decision. I want google to post what they are doing about this issue, and I want a date when we can expect it to be resolved please.
jo...@gmail.com <jo...@gmail.com> #34
st...@gmail.com <st...@gmail.com> #35
la...@gmail.com <la...@gmail.com> #36
st...@gmail.com <st...@gmail.com> #37
au...@gmail.com <au...@gmail.com> #38
au...@gmail.com <au...@gmail.com> #39
I have always been a big fan of Google Android phones. Sure the user interface may not be as polished as the iPhone. I admit the Exchange support might not be as tightly integrated as it is on the Blackberry. But, I’m a geek and I’m willing to put up with some annoyances as a trade-off for speed and flexibility and customization. And I’m not alone. Market researchers Canalys and NPD Group both recently published reports stating Android was running on > 40% of all smart phones in the United States. It would seem Android is destined for dominance.
Except somewhere along the way, Google seems to have forgotten first and foremost Android phones need to be phones. And that is why I’m seriously considering making the move to Blackberry or Windows Phone 7. For the last six months now I’ve been dealing with a huge flaw that makes my phone unusable for SMS texting. From what I’ve been able to tell using analytics provided by Google’s developer site, as many as 77% of Android phone users are at risk of having their text messages sent to a random contact.
That sounds unlikely right? I mean you pay upwards of $200 for a smart phone, and next to making phone calls, sending SMS text messages is probably the most used feature of the phone. But it’s true, and if you don’t believe me just type “android SMS wrong contact” into Google’s search engine and see how many hits you get. It’s astounding. It’s happening. And Google seems to be ignoring it altogether.
The first time I responded to a text message from recipient A, and it went to recipient B, I just wrote it off to user error. I was in a hurry. I fat fingered it. Who knows, right? In time though I’ve begun to qualify and quantify this serious bug and disaster waiting to happen. The worst part is you don’t even know your text message went to the wrong person until you get a call or new message from someone in your contact list asking “what was that last message all about?”
On the sender’s phone, the text message actually shows as sent to the correct recipient, yet I’ve been able to get all three parties with their phones to sit down in one room and verify that in fact the intended recipient did not receive my text, and a random contact did. I will put up with a lot of minor issues for a cool phone, but having my privacy threatened is not one of them.
What irks me the most is that owners of these phones, me included, have no recourse. The bug is part of the core operating system, and has been since Android 2.1, (though it seems worse with 2.2). Phone model doesn’t matter. Using a third-party SMS application won’t help. Contact your phone carrier and you will be told to do a factory reset then call the phone manufacturer. Contact the manufacturer and you will be told to do a factory reset then get in touch with your carrier. This is a flaw with Google’s code so how is it they managed to slip out of the support loop altogether?
Ah, I think now we have reached the heart of the problem haven’t we? By making it an open source solution, Google isn’t really accountable. Or are they? I guess that depends on you and me. Google has a vested interest in fixing any flaws that are impacting their continued effort for world smart phone dominance. If those of us who have made this platform so successful for them draw a line in the sand perhaps someone at Google will take notice.
The issue at hand has been logged in the Google forums for some time now. Sadly, it’s rated as only having a priority of “medium” and I’ve yet to see anyone from Google comment on the current state. I would urge any of you who have Android phones to log into the Google forum and star the issue. The link is here:
sk...@gmail.com <sk...@gmail.com> #40
dw...@gmail.com <dw...@gmail.com> #41
st...@gmail.com <st...@gmail.com> #42
wm...@gmail.com <wm...@gmail.com> #43
wi...@gmail.com <wi...@gmail.com> #44
do...@gmail.com <do...@gmail.com> #45
I think there is two situations here:
1. SMS is typed & sent to recipient A, shows as sent to A but in details was sent to B.
2. SMS is typed & sent to recipient B, but shows in thread for recipient B, was sent to A.
I have NEVER experienced 1. If I have, no one has replied to tell me.
I have experienced 2 in an odd way. I get a first time text from someone, usual 1st they've sent since I updated my ROM*, I don't reply. Later, normally after texting others, I go to find the original text & it's been attached to a voicemail notification SMS thread! This has happened maybe 5 times to me, not in the past 4 / 5 months and nothing else.
I run Cyanogen's latest stable 6.1 ROM on HTC Magic on Vodafone UK.
Going by these comments, these are all "new" phones, most seem to be Nexus 1's, Desires or Samsung Galaxy S.
im...@gmail.com <im...@gmail.com> #46
ma...@gmail.com <ma...@gmail.com> #47
er...@gmail.com <er...@gmail.com> #48
sc...@gmail.com <sc...@gmail.com> #49
zc...@gmail.com <zc...@gmail.com> #50
el...@gmail.com <el...@gmail.com> #51
[Deleted User] <[Deleted User]> #52
mp...@gmail.com <mp...@gmail.com> #53
si...@gmail.com <si...@gmail.com> #54
sp...@gmail.com <sp...@gmail.com> #55
r....@gmail.com <r....@gmail.com> #56
yg...@gmail.com <yg...@gmail.com> #57
wo...@gmail.com <wo...@gmail.com> #58
ha...@gmail.com <ha...@gmail.com> #59
ms...@gmail.com <ms...@gmail.com> #60
similar issues, when i get a text and it appears in the notification bar it sometimes says it is from a different contact than the one that actually sent it, i then open the notification window and it may tell me a completely different contact sent it, still not the right person, i then click on it and 90% of the time it takes me to the correct thread but the other 10% sends me to yet another random persons text thread.
ma...@gmail.com <ma...@gmail.com> #61
ro...@gmail.com <ro...@gmail.com> #62
br...@gmail.com <br...@gmail.com> #63
gr...@gmail.com <gr...@gmail.com> #64
wa...@gmail.com <wa...@gmail.com> #65
at...@gmail.com <at...@gmail.com> #66
sa...@gmail.com <sa...@gmail.com> #67
em...@gmail.com <em...@gmail.com> #68
c....@gmail.com <c....@gmail.com> #69
cm...@gmail.com <cm...@gmail.com> #70
np...@gmail.com <np...@gmail.com> #71
al...@gmail.com <al...@gmail.com> #72
st...@gmail.com <st...@gmail.com> #73
ow...@gmail.com <ow...@gmail.com> #74
st...@gmail.com <st...@gmail.com> #75
Q: Does this affect all versions of Android?
A: I don't know. But it certainly affects versions 2.1 and 2.2. This bug is actually several bugs that all manifest themselves similarly. The 2.2 code is slightly different than the 2.1 code, and reduces the likelihood of the problem. The you can experience this problem with 2.1 and 2.2.
Q: I haven't experienced this bug on my phone, so am I OK?
A: No. The conditions have to be "just right" for this bug to show up. If you are a frequent texter, you have a higher likelihood of experiencing the problem. But it can occur with anyone.
Q: If I use a 3rd party SMS client, will that make the problem go away?
A: No. It may reduce the likelihood. But the problem is in the Android code, not the client code.
Q: How can I prevent or avoid this bug?
A: Until it gets fixed, the best answer is to know that if you are in the middle of typing a text message and something happens that affects what you're doing or puts something in the notification bar (like you receive a text message or you get an e-mail), then stop. Quit what your doing. Leave the messaging app and just start all over.
Now that the spotlight is on this bug, I hope Google addresses it and gets a patch out to *ALL* versions of android, not just their upcoming versions.
Happy New Year!
ra...@gmail.com <ra...@gmail.com> #76
as...@gmail.com <as...@gmail.com> #77
dc...@gmail.com <dc...@gmail.com> #78
tk...@gmail.com <tk...@gmail.com> #79
da...@gmail.com <da...@gmail.com> #80
Come on Google, fix this thing already!
ma...@gmail.com <ma...@gmail.com> #81
The issue also appears when you attempt to DELETE a thread from PersonA, it deletes the thread from PersonB (or C, or D...).
ad...@gmail.com <ad...@gmail.com> #82
ni...@gmail.com <ni...@gmail.com> #83
to...@gmail.com <to...@gmail.com> #84
ca...@gmail.com <ca...@gmail.com> #85
sh...@gmail.com <sh...@gmail.com> #86
ev...@gmail.com <ev...@gmail.com> #87
om...@gmail.com <om...@gmail.com> #88
to...@gmail.com <to...@gmail.com> #89
wo...@gmail.com <wo...@gmail.com> #90
sa...@gmail.com <sa...@gmail.com> #91
aj...@gmail.com <aj...@gmail.com> #92
ni...@gmail.com <ni...@gmail.com> #93
wo...@gmail.com <wo...@gmail.com> #94
pt...@gmail.com <pt...@gmail.com> #95
I have experienced it so much I have adapted a routine where I regularly delete all SMS from the inbox which seems to help because it seems to send to one of the other people in your inbox, so if the inbox is clear for every SMS you send there is no one else to send it to other than the intended recipient.
Its about time Google got off there arses and fixed this.
re...@gmail.com <re...@gmail.com> #96
jc...@gmail.com <jc...@gmail.com> #97
mm...@gmail.com <mm...@gmail.com> #98
jo...@gmail.com <jo...@gmail.com> #99
mo...@gmail.com <mo...@gmail.com> #100
je...@gmail.com <je...@gmail.com> #101
ak...@gmail.com <ak...@gmail.com> #102
ba...@gmail.com <ba...@gmail.com> #103
This is a HUGE disappointment in what is otherwise an incredible platform. I think I usually catch this when the wrong contact is selected as the recipient, but if a user is distracted in any way, he or she might miss that the message is directed to what is effectively a random recipient.
This bug needs "critical" status ASAP.
Barrett
NYC
ed...@gmail.com <ed...@gmail.com> #104
ed...@gmail.com <ed...@gmail.com> #105
ja...@gmail.com <ja...@gmail.com> #106
co...@gmail.com <co...@gmail.com> #107
ja...@gmail.com <ja...@gmail.com> #108
It would be nice if you could also voice dial contacts in your phone book (Exchange, phone or Google contacts on the phone) with a reliable and easy app. Voice Search does not do it, it always searches the internet for the contact, not the phones contacts! Voice Dialer is useless! Partner with Dragon already!
Google needs to remember that first and foremost this is a "Phone" and needs to execute basic phone functions before solving the worlds problems.
bt...@gmail.com <bt...@gmail.com> #109
da...@gmail.com <da...@gmail.com> #110
mo...@gmail.com <mo...@gmail.com> #111
kp...@gmail.com <kp...@gmail.com> #112
If this bug isn't fixed until then, I'll really have no choice but to choose another platform...
bu...@gmail.com <bu...@gmail.com> #113
jo...@gmail.com <jo...@gmail.com> #114
sl...@gmail.com <sl...@gmail.com> #115
ta...@gmail.com <ta...@gmail.com> #116
ca...@gmail.com <ca...@gmail.com> #117
la...@gmail.com <la...@gmail.com> #118
I just hope this bug doesn't drive back to Cupcake, or I'm screwed.
be...@gmail.com <be...@gmail.com> #119
sa...@gmail.com <sa...@gmail.com> #120
I clicked on person X's text message thread, instead, it gave me person Y's thread. Texting what I thought now to be person Y on that thread, person X responded saying, "Uh, I don't think you meant to text me". When I backed out, and tapped person X's thread again, this time I got their thread, but now when I texted them person Y responded.
I could've given more specifics, but unfortunately you never fixed the problem where all text message threads randomly delete themselves sometimes.
Google needs to come out and admit these problems so we at least know they're working on a fix.
nt...@gmail.com <nt...@gmail.com> #121
ko...@gmail.com <ko...@gmail.com> #122
ja...@gmail.com <ja...@gmail.com> #123
How can something like text messaging be marked as a 'medium' priority!?
I'm a die hard Android fan. However, I have a hard time pushing it to my friends when something as MAJOR as this is a KNOWN issue! This needs to be resolved ASAP!!
jm...@gmail.com <jm...@gmail.com> #124
ko...@gmail.com <ko...@gmail.com> #125
jh...@gmail.com <jh...@gmail.com> #126
to...@gmail.com <to...@gmail.com> #127
he...@gmail.com <he...@gmail.com> #128
br...@gmail.com <br...@gmail.com> #129
ab...@gmail.com <ab...@gmail.com> #130
wh...@gmail.com <wh...@gmail.com> #131
ge...@gmail.com <ge...@gmail.com> #132
ra...@gmail.com <ra...@gmail.com> #133
kb...@gmail.com <kb...@gmail.com> #134
al...@gmail.com <al...@gmail.com> #135
rs...@gmail.com <rs...@gmail.com> #136
th...@gmail.com <th...@gmail.com> #137
it...
sp...@gmail.com <sp...@gmail.com> #138
am...@gmail.com <am...@gmail.com> #139
bo...@gmail.com <bo...@gmail.com> #140
ja...@gmail.com <ja...@gmail.com> #141
jt...@gmail.com <jt...@gmail.com> #142
ch...@gmail.com <ch...@gmail.com> #143
no...@gmail.com <no...@gmail.com> #144
tl...@gmail.com <tl...@gmail.com> #145
ja...@gmail.com <ja...@gmail.com> #146
mi...@gmail.com <mi...@gmail.com> #147
lu...@gmail.com <lu...@gmail.com> #148
sa...@gmail.com <sa...@gmail.com> #149
After reading BGR, my T-Mobile Samsung Vibrant(unlocked and being used on AT&T) was freely able to intercept a text exchange between my friend and his friend. I do NOT know his friend. I don't know if this is an issue with the same bug people are experiencing but I thought it would be good to share.
an...@gmail.com <an...@gmail.com> #150
py...@gmail.com <py...@gmail.com> #151
[Deleted User] <[Deleted User]> #152
iy...@gmail.com <iy...@gmail.com> #153
mj...@gmail.com <mj...@gmail.com> #154
df...@gmail.com <df...@gmail.com> #155
br...@gmail.com <br...@gmail.com> #156
go...@ojford.com <go...@ojford.com> #157
So they need to function, unsurprisingly, as phones. Calls and texts. To the right people.
C'mon guys, get it sorted.
el...@gmail.com <el...@gmail.com> #158
ne...@gmail.com <ne...@gmail.com> #159
qu...@gmail.com <qu...@gmail.com> #160
vt...@gmail.com <vt...@gmail.com> #161
ge...@gmail.com <ge...@gmail.com> #162
iq...@gmail.com <iq...@gmail.com> #163
on...@gmail.com <on...@gmail.com> #164
ta...@gmail.com <ta...@gmail.com> #165
sn...@gmail.com <sn...@gmail.com> #166
fo...@gmail.com <fo...@gmail.com> #167
js...@gmail.com <js...@gmail.com> #168
ct...@gmail.com <ct...@gmail.com> #169
br...@gmail.com <br...@gmail.com> #170
ky...@gmail.com <ky...@gmail.com> #171
th...@gmail.com <th...@gmail.com> #172
de...@gmail.com <de...@gmail.com> #173
sh...@gmail.com <sh...@gmail.com> #174
lu...@gmail.com <lu...@gmail.com> #175
ne...@gmail.com <ne...@gmail.com> #176
tu...@gmail.com <tu...@gmail.com> #177
y0...@gmail.com <y0...@gmail.com> #178
ch...@gmail.com <ch...@gmail.com> #179
Fix would be nice google
ch...@gmail.com <ch...@gmail.com> #180
Fix would be nice google
hu...@gmail.com <hu...@gmail.com> #181
ma...@gmail.com <ma...@gmail.com> #182
dr...@gmail.com <dr...@gmail.com> #183
pe...@gmail.com <pe...@gmail.com> #184
HTC Incredible, Stock Froyo, ADW.Launcher, Hancent Messaging.
db...@gmail.com <db...@gmail.com> #185
ne...@gmail.com <ne...@gmail.com> #186
ja...@gmail.com <ja...@gmail.com> #187
jo...@gmail.com <jo...@gmail.com> #188
Google, I'm extremely disappointed with you for this. You have known about this for far too damn long and you still do nothing about it. You have hid in the dark on this issue, sitting on your rear end hoping that it wouldn't become widely known. What a terrible way to treat your customers! Reminds me of Apple. Get it together Google! Or you've lost a customer!
co...@gmail.com <co...@gmail.com> #189
co...@gmail.com <co...@gmail.com> #190
ky...@gmail.com <ky...@gmail.com> #191
be...@gmail.com <be...@gmail.com> #192
to...@gmail.com <to...@gmail.com> #193
bl...@gmail.com <bl...@gmail.com> #194
d....@gmail.com <d....@gmail.com> #195
os...@gmail.com <os...@gmail.com> #196
ac...@gmail.com <ac...@gmail.com> #197
wi...@gmail.com <wi...@gmail.com> #198
ro...@gmail.com <ro...@gmail.com> #199
st...@gmail.com <st...@gmail.com> #200
vi...@gmail.com <vi...@gmail.com> #201
an...@gmail.com <an...@gmail.com> #202
sg...@gmail.com <sg...@gmail.com> #203
wb...@gmail.com <wb...@gmail.com> #204
[Deleted User] <[Deleted User]> #205
[Deleted User] <[Deleted User]> #206
ar...@gmail.com <ar...@gmail.com> #207
ar...@gmail.com <ar...@gmail.com> #208
sd...@gmail.com <sd...@gmail.com> #209
[Deleted User] <[Deleted User]> #210
Issues like this should be default red alerts.
be...@gmail.com <be...@gmail.com> #211
th...@gmail.com <th...@gmail.com> #212
lh...@gmail.com <lh...@gmail.com> #213
al...@gmail.com <al...@gmail.com> #214
tn...@gmail.com <tn...@gmail.com> #215
ni...@gmail.com <ni...@gmail.com> #216
please fix this asap
tb...@gmail.com <tb...@gmail.com> #217
sc...@gmail.com <sc...@gmail.com> #218
th...@gmail.com <th...@gmail.com> #219
te...@gmail.com <te...@gmail.com> #220
an...@gmail.com <an...@gmail.com> #221
lb...@gmail.com <lb...@gmail.com> #222
jo...@gmail.com <jo...@gmail.com> #223
au...@gmail.com <au...@gmail.com> #224
ja...@gmail.com <ja...@gmail.com> #225
wa...@gmail.com <wa...@gmail.com> #226
go...@gmail.com <go...@gmail.com> #227
da...@gmail.com <da...@gmail.com> #228
pt...@gmail.com <pt...@gmail.com> #229
ho...@gmail.com <ho...@gmail.com> #230
bf...@gmail.com <bf...@gmail.com> #231
dr...@gmail.com <dr...@gmail.com> #232
st...@gmail.com <st...@gmail.com> #233
la...@gmail.com <la...@gmail.com> #234
ro...@gmail.com <ro...@gmail.com> #235
la...@gmail.com <la...@gmail.com> #236
re...@gmail.com <re...@gmail.com> #237
mn...@gmail.com <mn...@gmail.com> #238
it should be a high on the list.
has cause me to send to the wrong recipient even after seeing that i selected the correct thread.
sc...@gmail.com <sc...@gmail.com> #239
th...@gmail.com <th...@gmail.com> #240
na...@gmail.com <na...@gmail.com> #241
se...@gmail.com <se...@gmail.com> #242
e9...@gmail.com <e9...@gmail.com> #243
je...@gmail.com <je...@gmail.com> #244
jo...@gmail.com <jo...@gmail.com> #245
ni...@gmail.com <ni...@gmail.com> #246
I do not want my career or relationships threatened by a senseless misunderstanding.
tj...@gmail.com <tj...@gmail.com> #247
ni...@gmail.com <ni...@gmail.com> #248
No wonder why Obama uses a Blackberry.
Imagine sending the wrong piece of sensitive data to the wrong person at that level!
jp...@feplabs.com <jp...@feplabs.com> #249
nf...@gmail.com <nf...@gmail.com> #250
pe...@gmail.com <pe...@gmail.com> #251
kj...@gmail.com <kj...@gmail.com> #252
ja...@gmail.com <ja...@gmail.com> #253
js...@gmail.com <js...@gmail.com> #254
IN ADDITION TO FIXING IT, MAKE AN APP THAT WILL NOTIFY THE USER OF ALL TXT MSGS THAT WERE COMPROMISED. ITS IMPERATIVE THAT CONFIDENTIAL CONVERSATIONS ABOUT AN UPCOMING PRODUCT DID NOT END UP IN THE HANDS OF COMPETITORS OR NONPRIVILEGED USERS AND IF THAT HAPPENED, I NEED TO KNOW TO WHAT EXTEND.
br...@gmail.com <br...@gmail.com> #255
da...@gmail.com <da...@gmail.com> #256
Have any of the texts been particularly embarrassing? No, but I have all but lost faith in my phone.
Seeing that the issue is so widespread and SO WELL KNOWN makes me SO FLIPPIN' FIRED UP that Google and its developers don't care about the issue.
Medium priority? Yeah, whatever. I am strongly considering using a cheap pre-paid phone until the iPhone 5 comes out. This issue completely, devastatingly unacceptable.
c....@gmail.com <c....@gmail.com> #257
el...@gmail.com <el...@gmail.com> #258
da...@gmail.com <da...@gmail.com> #259
Messages are sent to wrong person/contact.
Also messaging is slow and clumsy. please fix or i will switch to iphone 4 or non-android device.
ro...@gmail.com <ro...@gmail.com> #260
ni...@gmail.com <ni...@gmail.com> #261
This should really be a priority because I don't want to use a crappy looking 3rd party SMS app like Handcent.
bi...@gmail.com <bi...@gmail.com> #262
co...@gmail.com <co...@gmail.com> #263
dk...@gmail.com <dk...@gmail.com> #264
ti...@gmail.com <ti...@gmail.com> #265
However, everyone needs to take a step back here. It's December 31st. If someone's going to elevate this issue, it will most likely not happen until Monday (at the earliest).
Posting repeated messages that this issue needs to be elevated, that you're going to leave Android if it's not fixed, and other comments along the same vein are just not useful and fill the issue with white noise. This is especially problematic as everyone who comments sends everyone else who starred the thread an email, and pretty soon it'll all just be people repeating the same trivial nonsense over and over and over again.
So, star the post, comment if you have useful information that will help the devs identify the issue and fix it, and leave it at that. I don't feel like being bombarded by five-thousand posts saying the same thing today.
da...@gmail.com <da...@gmail.com> #266
They don't care.
We need more noise, not less.
Because they don't care.
co...@gmail.com <co...@gmail.com> #267
br...@gmail.com <br...@gmail.com> #268
ma...@gmail.com <ma...@gmail.com> #269
[Deleted User] <[Deleted User]> #270
I use an HTC Evo 4G, non-rooted and no SMS app.
By the way, an SMS is said to solve the problem.
Also, everyone that is freaking out, please calm down. It does not help with fixing the bug. Give a thought out comment and try to add to the discussions to help the engineers solve the problem.
cd...@gmail.com <cd...@gmail.com> #271
da...@gmail.com <da...@gmail.com> #272
ja...@gmail.com <ja...@gmail.com> #273
om...@gmail.com <om...@gmail.com> #274
Please fix this: i thought this was a touchscreen/hardware issue until now. Would love to be able to be more confident in the hardware I own!
da...@gmail.com <da...@gmail.com> #275
[Deleted User] <[Deleted User]> #276
to...@gmail.com <to...@gmail.com> #277
2....@gmail.com <2....@gmail.com> #278
ti...@gmail.com <ti...@gmail.com> #279
Stars are noise. It sorts issues based on community feedback.
I'm not saying that this isn't a critical issue. It's very serious. But before everyone clogs up the comments with messages like @272, seriously; take a step back.
So far, there are roughly 1800 stars on the issue, and 275 comments (as I'm writing this). Google now activates 300,000 handsets daily. I, personally, know of only a handful of people who have encountered this issue first-hand (and I'm one of them).
The irregularity of this issue makes it hard to track down and fix. Google is only going to be able to fix it with first-hand examples. Everyone posting "please fix this asap" is just burying the real, useful posts.
If the noisy, angry crowd wants an issue they can flame over: just a few days ago, it was demonstrated that GSM calls can be intercepted in about twenty seconds with $15 in equipment and some open-source tools. That has the possibility of effecting everyone on GSM networks, with any GSM phone. A bit larger subset than just the Android community, isn't it?
I'm just saying, please look at this with some perspective. It's serious, but not apocalyptic.
If you too feel that this issue is serious, star it. Comment if you have pertinent information that would let the devs replicate this issue so that they can fix it.
em...@gmail.com <em...@gmail.com> #280
af...@gmail.com <af...@gmail.com> #281
br...@gmail.com <br...@gmail.com> #282
ji...@gmail.com <ji...@gmail.com> #283
lo...@gmail.com <lo...@gmail.com> #284
[Deleted User] <[Deleted User]> #285
ma...@gmail.com <ma...@gmail.com> #286
er...@gmail.com <er...@gmail.com> #287
ze...@gmail.com <ze...@gmail.com> #288
Went to call log, select last inbound call, send text message...wait for ride that never got the message.
Motorola Droid (classic)
2.2.1
Was rooted but system update and factory reset seem to have returned it to normal.
Screen shots and debugging available upon request.
co...@gmail.com <co...@gmail.com> #289
ml...@gmail.com <ml...@gmail.com> #290
jo...@gmail.com <jo...@gmail.com> #291
cg...@gmail.com <cg...@gmail.com> #292
jw...@gmail.com <jw...@gmail.com> #293
av...@gmail.com <av...@gmail.com> #294
jo...@gmail.com <jo...@gmail.com> #295
me...@gmail.com <me...@gmail.com> #296
ba...@gmail.com <ba...@gmail.com> #297
Comment 13 by azstafford, Oct 08, 2010
"Usually, the message is sent to the correct recipient, but shown in the wrong thread."
tr...@gmail.com <tr...@gmail.com> #298
hy...@gmail.com <hy...@gmail.com> #299
pe...@gmail.com <pe...@gmail.com> #300
gets sent to the right number but gets filed under (random) contact B. It's
not fatal, but VERY annoying.
of
the
versions.
ch...@gmail.com <ch...@gmail.com> #301
HTC Incredible 2.2
b....@googlemail.com <b....@googlemail.com> #302
be...@gmail.com <be...@gmail.com> #303
st...@gmail.com <st...@gmail.com> #304
ro...@gmail.com <ro...@gmail.com> #305
vw...@gmail.com <vw...@gmail.com> #306
th...@gmail.com <th...@gmail.com> #307
mb...@gmail.com <mb...@gmail.com> #308
to...@gmail.com <to...@gmail.com> #309
ar...@gmail.com <ar...@gmail.com> #310
le...@gmail.com <le...@gmail.com> #311
ja...@gmail.com <ja...@gmail.com> #312
an...@gmail.com <an...@gmail.com> #313
an...@gmail.com <an...@gmail.com> #314
an...@gmail.com <an...@gmail.com> #315
running: android 2.1 (LG Ally)
[Deleted User] <[Deleted User]> #316
ah...@gmail.com <ah...@gmail.com> #317
ja...@gmail.com <ja...@gmail.com> #318
ja...@gmail.com <ja...@gmail.com> #319
The second problem, I have experienced much less. Of course, It's always the messages that matter (like in the middle of an argument or something) that dont get delivered. thats fun to try to explain
google! please fix this ASAP
je...@gmail.com <je...@gmail.com> #320
at...@gmail.com <at...@gmail.com> #321
po...@gmail.com <po...@gmail.com> #322
vh...@gmail.com <vh...@gmail.com> #323
su...@gmail.com <su...@gmail.com> #324
gr...@strafford.co.nz <gr...@strafford.co.nz> #325
no...@gmail.com <no...@gmail.com> #326
jo...@gmail.com <jo...@gmail.com> #327
yt...@gmail.com <yt...@gmail.com> #328
da...@gmail.com <da...@gmail.com> #329
To have one of your GSM calls intercepted, it requires intent on the part of the interceptor. It requires that someone deliberately acquire equipment and knowledge, and actively try to snoop on your conversation (and violate the law?).
It's like comparing this issue to locks on the front door to your home: "Standard door locks are all pickable without too much effort, so why is it such a big deal that Android phones send your text messages to someone you didn't authorize to read them? Unauthorized people could enter your home, so should be a bigger concern to you."
This issue requires no intent on the part of the violator, and that's what makes it so entirely unacceptable.
Google has known about this issue from months, and nothing has been done. Nothing... aside from shrugging and marking the issue as "Medium" priority. Why should it be necessary for several major tech websites to broadcast the issue to the world before Google cares?
[Deleted User] <[Deleted User]> #330
st...@gmail.com <st...@gmail.com> #331
jo...@gmail.com <jo...@gmail.com> #332
ja...@gmail.com <ja...@gmail.com> #333
[Deleted User] <[Deleted User]> #334
pe...@gmail.com <pe...@gmail.com> #335
ma...@gmail.com <ma...@gmail.com> #336
has scared the shit out of people that have been inadvertently texted
also caused some major embarrassment for me
de...@cragrat.com <de...@cragrat.com> #337
hu...@gmail.com <hu...@gmail.com> #338
al...@gmail.com <al...@gmail.com> #339
qi...@gmail.com <qi...@gmail.com> #340
ad...@yahoo.com <ad...@yahoo.com> #341
cs...@gmail.com <cs...@gmail.com> #342
po...@live.com <po...@live.com> #343
[Deleted User] <[Deleted User]> #344
ah...@gmail.com <ah...@gmail.com> #345
ja...@gmail.com <ja...@gmail.com> #346
ab...@gmail.com <ab...@gmail.com> #347
fd...@gmail.com <fd...@gmail.com> #348
rk...@gmail.com <rk...@gmail.com> #349
br...@gmail.com <br...@gmail.com> #350
ma...@gmail.com <ma...@gmail.com> #351
so...@gmail.com <so...@gmail.com> #352
ja...@gmail.com <ja...@gmail.com> #353
in...@gmail.com <in...@gmail.com> #354
i hope this is the issue they are talking about.
because yes it has happened to me, and yes i have sent texts to ppl they are not originally for.
the ppl arent random at all, i always thought it had something to do with the touch interface,but it is only around in the stock sms program....
ill select a person at the top of the list, and it will bring up someone towards the bottom of the list. now ive learned to live with it,and pay attention more. but it would be nice having piece of mind.
ne...@gmail.com <ne...@gmail.com> #355
in...@gmail.com <in...@gmail.com> #356
I get this bug or at least what I think is this bug at least 3 times a day! I am texting a lot seeing as how I am a teen. What happens is when I click on a contact thread it seems to go to the last contact thread I can see on my screen.
EXACT same problem i have. When I try to select someone's thread, it goes to the last person in my messaging contacts. But I normally recognize it because i look at their picture. It happens about 10 times a day. SOOO annoying. But I've never sent the wrong message to someone (knock on wood).
Same problem for me, I'll click on a contact to send a text to and it will end up opening another contact, the last in my messaging contacts. Very annoying, and sent my message to the wrong person a couple of times.
re...@gmail.com <re...@gmail.com> #357
in...@gmail.com <in...@gmail.com> #358
cl...@gmail.com <cl...@gmail.com> #359
bo...@gmail.com <bo...@gmail.com> #360
lp...@gmail.com <lp...@gmail.com> #361
When it happens, I can almost always watch the recipient change within a second of clicking a conversation to reply to. It's always at least 3 or 4 conversations back in the list (if not many more), and they are usually threads that have not been active in days if not weeks.
At first I suspected it was some sort of glitch in the touchscreen code, a secondary press event being misfired and slightly delayed by the first press bringing up the first message, but I don't think that's it because often the conversation it will swap it to is not visible on the screen in either orientation. (though my knowledge of the underpinnings of Android are shallow)
Regardless, this can be quite dangerous if not embarrassing. Nothing like a client getting a message intended for your girlfriend, etc.
I really wish this would get fixed and having to triple check (and wait for a couple of seconds to see if the recipient will change) is just unacceptable for a phone built around communication.
mc...@gmail.com <mc...@gmail.com> #362
36...@gmail.com <36...@gmail.com> #363
in...@gmail.com <in...@gmail.com> #364
ju...@gmail.com <ju...@gmail.com> #365
re...@gmail.com <re...@gmail.com> #366
(Standard froyo, no rooting or anything)
bu...@gmail.com <bu...@gmail.com> #367
Dell Streak (on 1.6 :-( )
tc...@gmail.com <tc...@gmail.com> #368
da...@gmail.com <da...@gmail.com> #369
ca...@gmail.com <ca...@gmail.com> #370
bl...@gmail.com <bl...@gmail.com> #371
dg...@gmail.com <dg...@gmail.com> #372
ms...@gmail.com <ms...@gmail.com> #373
fl...@gmail.com <fl...@gmail.com> #374
st...@gmail.com <st...@gmail.com> #375
lm...@gmail.com <lm...@gmail.com> #376
da...@gmail.com <da...@gmail.com> #377
da...@gmail.com <da...@gmail.com> #378
ul...@gmail.com <ul...@gmail.com> #379
ma...@gmail.com <ma...@gmail.com> #380
by...@gmail.com <by...@gmail.com> #381
mu...@gmail.com <mu...@gmail.com> #382
mu...@gmail.com <mu...@gmail.com> #383
ba...@gmail.com <ba...@gmail.com> #384
Evo 4g.
je...@gmail.com <je...@gmail.com> #385
pa...@gmail.com <pa...@gmail.com> #386
mo...@gmail.com <mo...@gmail.com> #387
bi...@gmail.com <bi...@gmail.com> #388
to...@gmail.com <to...@gmail.com> #389
am...@gmail.com <am...@gmail.com> #390
I txt'd the wrong person..and now she's pissed at me. What the hell!
I want to burn my phone!
If this doesn't get fixed ASAP, I'm posting youtube vid and starting a revolt!
sa...@gmail.com <sa...@gmail.com> #391
mi...@gmail.com <mi...@gmail.com> #392
Every first run on the MMS app, it picks the wrong thread, and always replies to the wrong sender.
Yeah, it's a little more severe than 'Medium'.
tw...@gmail.com <tw...@gmail.com> #393
ia...@gmail.com <ia...@gmail.com> #394
ki...@gmail.com <ki...@gmail.com> #395
mo...@gmail.com <mo...@gmail.com> #396
[Deleted User] <[Deleted User]> #397
[Deleted User] <[Deleted User]> #398
mo...@gmail.com <mo...@gmail.com> #399
an...@gmail.com <an...@gmail.com> #400
bh...@gmail.com <bh...@gmail.com> #401
lo...@gmail.com <lo...@gmail.com> #402
nx...@gmail.com <nx...@gmail.com> #403
I've had a MyTouch 3G, Nexus One, and now a Nexus S. I've experienced this issue several times on my Nexus One.
d0...@gmail.com <d0...@gmail.com> #404
ma...@gmail.com <ma...@gmail.com> #405
ma...@gmail.com <ma...@gmail.com> #406
[Deleted User] <[Deleted User]> #407
d0...@gmail.com <d0...@gmail.com> #408
This happens on both my Nexus One and my G1. Nexus One is running most current OTA update. G1 is running latest Cyanogen based on firmware 2.1
To replicate the bug all you need is 2 text threads. You send a message in one thread and it appears to send to the correct person but sometimes it sends to the person in thread 2 and you only know because they reply and dont know what you're talking about. This happens all that time and has no matter what firmware ive used. It seems (and I cant confirm this) the only way to keep it from happening it to delete all threads, back out to desktop then go back to SMS and send a new message. This means im losing important information contained in texts but its the only way to keep private conversations private. This bug is pretty close to being a deal breaker and my contract is almost up which means its time for a new phone. This needs to be fixed ASAP its been going on way too long.
Please fix this!
st...@gmail.com <st...@gmail.com> #409
br...@gmail.com <br...@gmail.com> #410
dp...@gmail.com <dp...@gmail.com> #411
ro...@gmail.com <ro...@gmail.com> #412
ew...@gmail.com <ew...@gmail.com> #413
hj...@gmail.com <hj...@gmail.com> #414
dy...@gmail.com <dy...@gmail.com> #415
ja...@gmail.com <ja...@gmail.com> #416
Google get this resolved!
do...@gmail.com <do...@gmail.com> #417
el...@gmail.com <el...@gmail.com> #418
wh...@gmail.com <wh...@gmail.com> #419
jo...@gmail.com <jo...@gmail.com> #420
bb...@gmail.com <bb...@gmail.com> #421
st...@40fingers.net <st...@40fingers.net> #422
tr...@gmail.com <tr...@gmail.com> #423
jo...@gmail.com <jo...@gmail.com> #424
to...@gmail.com <to...@gmail.com> #425
ma...@gmail.com <ma...@gmail.com> #426
jo...@gmail.com <jo...@gmail.com> #427
sa...@gmail.com <sa...@gmail.com> #428
be...@gmail.com <be...@gmail.com> #429
This is a big big problem.
lu...@gmail.com <lu...@gmail.com> #430
id...@gmail.com <id...@gmail.com> #431
ro...@gmail.com <ro...@gmail.com> #432
xe...@gmail.com <xe...@gmail.com> #433
FIX IT.
ca...@gmail.com <ca...@gmail.com> #434
j....@gmail.com <j....@gmail.com> #435
ch...@gmail.com <ch...@gmail.com> #436
ph...@gmail.com <ph...@gmail.com> #437
ro...@gmail.com <ro...@gmail.com> #438
This should be a number one priority!
bw...@gmail.com <bw...@gmail.com> #439
sm...@gmail.com <sm...@gmail.com> #440
jo...@gmail.com <jo...@gmail.com> #441
wr...@gmail.com <wr...@gmail.com> #442
am...@gmail.com <am...@gmail.com> #443
tr...@gmail.com <tr...@gmail.com> #444
ro...@gmail.com <ro...@gmail.com> #445
he...@leirvoll.no <he...@leirvoll.no> #446
rw...@gmail.com <rw...@gmail.com> #447
to...@gmail.com <to...@gmail.com> #448
[Deleted User] <[Deleted User]> #449
vi...@gmail.com <vi...@gmail.com> #450
sb...@gmail.com <sb...@gmail.com> #451
jm...@gmail.com <jm...@gmail.com> #452
su...@gmail.com <su...@gmail.com> #453
ma...@pace.io <ma...@pace.io> #454
ma...@gmail.com <ma...@gmail.com> #455
kr...@gmail.com <kr...@gmail.com> #456
je...@gmail.com <je...@gmail.com> #457
fo...@gmail.com <fo...@gmail.com> #458
di...@gmail.com <di...@gmail.com> #459
ru...@gmail.com <ru...@gmail.com> #460
[Deleted User] <[Deleted User]> #461
jo...@gmail.com <jo...@gmail.com> #462
pi...@gmail.com <pi...@gmail.com> #463
je...@gmail.com <je...@gmail.com> #464
FIX IT ASAP!
el...@gmail.com <el...@gmail.com> #465
jo...@gmail.com <jo...@gmail.com> #466
ak...@yahoo.com <ak...@yahoo.com> #467
cd...@gmail.com <cd...@gmail.com> #468
bs...@gmail.com <bs...@gmail.com> #469
fr...@gmail.com <fr...@gmail.com> #470
av...@gmail.com <av...@gmail.com> #471
you know what to do google
ch...@gmail.com <ch...@gmail.com> #472
ju...@gmail.com <ju...@gmail.com> #473
je...@gmail.com <je...@gmail.com> #474
ne...@gmail.com <ne...@gmail.com> #475
ch...@gmail.com <ch...@gmail.com> #476
va...@eviltwilight.com <va...@eviltwilight.com> #477
1st is that on a rare occasion I'll completely type out a text and send it only it goes to someone else in my phone book, I usually don't find out til the un-intended recipient replies wondering what I'm talking about.
2nd happens more frequently and it basically when I press on one contact to send them a text it picks a random person out of my phonebook to start composing to.
Both of these only happen on my Evo and not my LG Optimus. The Evo has a ton more entries in the phone book and sees a lot more use than the Optimus does since the Optimus I got as a toy to play with cus I wanted to check out Froyo without the sense UI and I had room on my account.
va...@eviltwilight.com <va...@eviltwilight.com> #478
cs...@gmail.com <cs...@gmail.com> #479
da...@gmail.com <da...@gmail.com> #480
gl...@gmail.com <gl...@gmail.com> #481
co...@gmail.com <co...@gmail.com> #482
si...@gmail.com <si...@gmail.com> #483
an...@gmail.com <an...@gmail.com> #484
er...@gmail.com <er...@gmail.com> #485
ji...@gmail.com <ji...@gmail.com> #486
mb...@gmail.com <mb...@gmail.com> #487
ma...@gmail.com <ma...@gmail.com> #488
as...@gmail.com <as...@gmail.com> #489
jl...@gmail.com <jl...@gmail.com> #490
jh...@gmail.com <jh...@gmail.com> #491
mu...@gmail.com <mu...@gmail.com> #492
Android will loss credibility if this issue not addressed quickly.
da...@gmail.com <da...@gmail.com> #493
fl...@gmail.com <fl...@gmail.com> #494
ja...@gmail.com <ja...@gmail.com> #495
I've long since switched to handcent and haven't had it happen again.
I think its the way Android handles multitasking. When you use the home button to leave an app then go to another it saves the state of the first app. When you go back to that first app you can press the back button and go back to a menu (in messaging, to all threads). When you receive a notification and open an app from there you create a Jew layer in your app. If you press the back button 10 times or so you'll eventually close out of the app.
I firmly believe that the bug lies somewhere in there when you are constantly using the notification bar to reply to messages.
sa...@gmail.com <sa...@gmail.com> #496
Being a Diehard Android fan who only used Android phones for the last one and half years (3 Handsets) I would like to see this problem fixed ASAP.
jw...@gmail.com <jw...@gmail.com> #497
pr...@gmail.com <pr...@gmail.com> #498
dp...@gmail.com <dp...@gmail.com> #499
an...@gmail.com <an...@gmail.com> #500
[Deleted User] <[Deleted User]> #501
Please make this a top priority. It needs fixed.
ca...@gmail.com <ca...@gmail.com> #502
jh...@gmail.com <jh...@gmail.com> #503
ra...@gmail.com <ra...@gmail.com> #504
ho...@gmail.com <ho...@gmail.com> #505
ho...@gmail.com <ho...@gmail.com> #506
rj...@gmail.com <rj...@gmail.com> #507
ia...@gmail.com <ia...@gmail.com> #508
jo...@gmail.com <jo...@gmail.com> #509
This can be disastrous for peoples lives and as a result mess with their well being!
A serious priority!
da...@hotmail.com <da...@hotmail.com> #510
ov...@gmail.com <ov...@gmail.com> #511
cl...@gmail.com <cl...@gmail.com> #512
jo...@gmail.com <jo...@gmail.com> #513
su...@gmail.com <su...@gmail.com> #514
ix...@gmail.com <ix...@gmail.com> #515
ca...@gmail.com <ca...@gmail.com> #516
ma...@gmail.com <ma...@gmail.com> #517
ma...@gmail.com <ma...@gmail.com> #518
ze...@gmail.com <ze...@gmail.com> #519
ph...@gmail.com <ph...@gmail.com> #520
cr...@gmail.com <cr...@gmail.com> #521
br...@gmail.com <br...@gmail.com> #522
sn...@gmail.com <sn...@gmail.com> #523
Delete facebook from your phone and unlink/remove all facebook accounts, links/syncs, shortcuts and apps. Finish sending your in progress texts prior to viewing new texts. Also stop facebook from texting you. If you already gave them permission to, go to
If you feel that you absolutely MUST use facebook, do it from a pc or browser but do not check "stay signed in" or "remember me" on the browser sign in page.
Google, please send me 20 shares of your stock for resolving this for you. You know where to find me.
Thanks,
Snowfreeze
mi...@gmail.com <mi...@gmail.com> #524
sn...@gmail.com <sn...@gmail.com> #525
sn...@gmail.com <sn...@gmail.com> #526
ma...@gmail.com <ma...@gmail.com> #527
an...@gmail.com <an...@gmail.com> #528
ca...@gmail.com <ca...@gmail.com> #530
ca...@gmail.com <ca...@gmail.com> #531
vi...@gmail.com <vi...@gmail.com> #532
ma...@gmail.com <ma...@gmail.com> #533
ge...@gmail.com <ge...@gmail.com> #534
rh...@gmail.com <rh...@gmail.com> #535
Please sort this as a matter of urgency!
le...@gmail.com <le...@gmail.com> #536
th...@gmail.com <th...@gmail.com> #537
See here for repeatable explanation:
And also here:
A quote from the second link:
"Besides the few obvious trolling attempts, you see reports claiming this bug sends SMS messages to people you know, but aren't in your contacts list, or people claiming that the phone number is correct, but the app sent it based on the MEID to the wrong person. Plain and simple -- these types of issues aren't happening, and only cloud the real issue. If you do experience this bug, you need to calmly, and more importantly, truthfully, submit the steps needed to reproduce it."
Please think about it before you right some BS explanation or just whine. This is a bug reporting system, not an "I'm an idiot user and want to whine because a tech blog told me to" system.
For those wondering why it is medium priority...well let's see, millions of android phones...likely billions of text messages sent a day...and 3000 people have starred the issue. That's less than 0.01% of android phones having a problem that only occurs infrequently?
Get some perspective people seriously!
bk...@gmail.com <bk...@gmail.com> #538
eg...@gmail.com <eg...@gmail.com> #539
ju...@gmail.com <ju...@gmail.com> #540
pt...@gmail.com <pt...@gmail.com> #541
mr...@gmail.com <mr...@gmail.com> #542
The message appeared in the proper thread at first. Until i had a reply from my team leader which was rather amusing.
When i had a reply to the sms from my TL, the wrongly sent sms appeared in the thread with him, and not in the thread with my wife
sa...@gmail.com <sa...@gmail.com> #543
to...@gmail.com <to...@gmail.com> #544
sd...@gmail.com <sd...@gmail.com> #545
ga...@gmail.com <ga...@gmail.com> #546
mi...@gmail.com <mi...@gmail.com> #547
Is it more important to release a Google Reader application or to make sure that a SMS goes to the right person? How do these people think and make priorities???
This is a major bug and I'm really disappointed with Google reaction. I love Android and recommended it to everyone I know, I won't anymore.
One question to people who had that bug: does the receipt acknowledgment of the SMS show the right number (or name depending on the OS version) or the wrong person number when you receive it?
rb...@gmail.com <rb...@gmail.com> #548
dr...@gmail.com <dr...@gmail.com> #549
It's a reason enough to quit using my Android phone
mi...@gmail.com <mi...@gmail.com> #550
cm...@gmail.com <cm...@gmail.com> #551
nk...@gmail.com <nk...@gmail.com> #552
ma...@gmail.com <ma...@gmail.com> #553
kv...@gmail.com <kv...@gmail.com> #554
ge...@gmail.com <ge...@gmail.com> #555
ga...@gmail.com <ga...@gmail.com> #556
ii...@gmail.com <ii...@gmail.com> #557
ph...@gmail.com <ph...@gmail.com> #558
pi...@gmail.com <pi...@gmail.com> #559
But nobody care for this one because americans aren't involved...
en...@gmail.com <en...@gmail.com> #560
ra...@gmail.com <ra...@gmail.com> #561
o....@gmail.com <o....@gmail.com> #562
vi...@gmail.com <vi...@gmail.com> #563
b....@gmail.com <b....@gmail.com> #564
ak...@gmail.com <ak...@gmail.com> #565
do...@gmail.com <do...@gmail.com> #566
ko...@googlemail.com <ko...@googlemail.com> #567
ch...@gmail.com <ch...@gmail.com> #568
st...@gmail.com <st...@gmail.com> #569
st...@gmail.com <st...@gmail.com> #570
mi...@gmail.com <mi...@gmail.com> #571
st...@gmail.com <st...@gmail.com> #572
nn...@gmail.com <nn...@gmail.com> #573
Hopefully this will help.
Remember not to delete any SMS Messages and then send out a new one or reply to someone else. for some reason the number you are replying back to shows up as another persons name above.
I have rebooted my device at the end of the day once I delete the SMS messages and did not have a problem until i deleted and went to send a msg.
ru...@gmail.com <ru...@gmail.com> #574
je...@gmail.com <je...@gmail.com> #575
je...@gmail.com <je...@gmail.com> #576
ji...@gmail.com <ji...@gmail.com> #577
ma...@gmail.com <ma...@gmail.com> #578
je...@gmail.com <je...@gmail.com> #579
ap...@gmail.com <ap...@gmail.com> #580
cr...@gmail.com <cr...@gmail.com> #581
se...@gmail.com <se...@gmail.com> #582
da...@gmail.com <da...@gmail.com> #583
ts...@gmail.com <ts...@gmail.com> #584
now i can't trust it not even to send the message to the correct contact?
this is so wrong.
i am going back to my 8 years old siemens c55. it had proper delivery notification and sent the message to the correct contact.
hy...@gmail.com <hy...@gmail.com> #585
hy...@gmail.com <hy...@gmail.com> #586
al...@gmail.com <al...@gmail.com> #587
al...@gmail.com <al...@gmail.com> #588
dw...@gmail.com <dw...@gmail.com> #589
I love my EVO but this isn't cool at all...
This needs to be on the too of the list.
ne...@gmail.com <ne...@gmail.com> #590
p....@gmail.com <p....@gmail.com> #591
You better change it to superhigh
bg...@gmail.com <bg...@gmail.com> #592
er...@gmail.com <er...@gmail.com> #593
an...@gmail.com <an...@gmail.com> #594
an...@gmail.com <an...@gmail.com> #595
jo...@googlemail.com <jo...@googlemail.com> #596
ed...@gmail.com <ed...@gmail.com> #597
im...@gmail.com <im...@gmail.com> #598
im...@gmail.com <im...@gmail.com> #599
im...@gmail.com <im...@gmail.com> #600
ma...@gmail.com <ma...@gmail.com> #601
ra...@gmail.com <ra...@gmail.com> #602
an...@smith.cx <an...@smith.cx> #603
bf...@gmail.com <bf...@gmail.com> #604
ja...@gmail.com <ja...@gmail.com> #605
z....@gmail.com <z....@gmail.com> #606
ks...@gmail.com <ks...@gmail.com> #607
mo...@gmail.com <mo...@gmail.com> #608
ro...@gmail.com <ro...@gmail.com> #609
ad...@gmail.com <ad...@gmail.com> #610
[Deleted User] <[Deleted User]> #611
vi...@gmail.com <vi...@gmail.com> #612
ya...@gmail.com <ya...@gmail.com> #613
na...@gmail.com <na...@gmail.com> #614
cj...@gmail.com <cj...@gmail.com> #615
rb...@gmail.com <rb...@gmail.com> #616
pm...@gmail.com <pm...@gmail.com> #617
Please fix this ASAP.
km...@gmail.com <km...@gmail.com> #618
jm...@gmail.com <jm...@gmail.com> #619
mr...@gmail.com <mr...@gmail.com> #620
kt...@gmail.com <kt...@gmail.com> #621
ze...@googlemail.com <ze...@googlemail.com> #622
mi...@gmail.com <mi...@gmail.com> #623
ad...@gmail.com <ad...@gmail.com> #624
mi...@gmail.com <mi...@gmail.com> #625
At the very least, we should be able to trust our phones to function correctly, as phones. Fix this ASAP.
mp...@gmail.com <mp...@gmail.com> #626
m....@gmail.com <m....@gmail.com> #627
Even more annoying however is a somewhat related issue where I thought I sent a text message to a friend which, was somewhat time sensitive relating to getting him info for getting a job. Only to find out much later that the message was never sent and is stored as a mere "Draft" when I was positive it was sent. Had this issue also happen on a couple other instances.
Point is, these bugs on Messenger app should be fixed ASAP. The potential of a potential female acquaintance getting a crude message meant for one of my buddies or quite possibly, someone getting fired over this is there. You do not want someone to blow this issue up even moreso then how much Engadget did.
jo...@gmail.com <jo...@gmail.com> #628
au...@gmail.com <au...@gmail.com> #629
pa...@gmail.com <pa...@gmail.com> #630
ba...@gmail.com <ba...@gmail.com> #631
The bug is about conversation selection not about texting random contacts.
Happens when I have over ~1500 sms messages in my inbox on HTC Wildfire with Froyo update.
cu...@gmail.com <cu...@gmail.com> #632
pj...@gmail.com <pj...@gmail.com> #633
mi...@gmail.com <mi...@gmail.com> #634
dh...@gmail.com <dh...@gmail.com> #635
The attention this has gotten in the last 24 hours is healthy, because we really need an official Google comment on this, including whether it's been confirmed, when it happens, and a patch to fix it.
ed...@gmail.com <ed...@gmail.com> #636
to...@gmail.com <to...@gmail.com> #637
ci...@gmail.com <ci...@gmail.com> #638
kb...@gmail.com <kb...@gmail.com> #639
tb...@gmail.com <tb...@gmail.com> #640
d8...@gmail.com <d8...@gmail.com> #641
da...@gmail.com <da...@gmail.com> #642
db...@gmail.com <db...@gmail.com> #643
jw...@gmail.com <jw...@gmail.com> #644
gh...@gmail.com <gh...@gmail.com> #645
le...@gmail.com <le...@gmail.com> #646
cr...@gmail.com <cr...@gmail.com> #647
This happened to me on a new Nexus One straight out of the box. I did a factory reset but the issue persisted.
Resolution;
Remove BOTH contacts from phonebook and Google account. Re-add the contacts then send messages as normal. This seems to have fixed/worked around the issue for me.
I am unable to reproduce the issue.
A small request to anyone reading this: Please don't leave a comment unless you are adding value. This defect has quite a lot of useless comments from people who are saying nothing relevant.
wr...@gmail.com <wr...@gmail.com> #648
di...@gmail.com <di...@gmail.com> #649
jr...@gmail.com <jr...@gmail.com> #650
ad...@gmail.com <ad...@gmail.com> #651
hu...@gmail.com <hu...@gmail.com> #652
zz...@gmail.com <zz...@gmail.com> #653
ku...@gmail.com <ku...@gmail.com> #654
ma...@gmail.com <ma...@gmail.com> #655
kf...@gmail.com <kf...@gmail.com> #656
th...@gmail.com <th...@gmail.com> #657
la...@gmail.com <la...@gmail.com> #658
ki...@gmail.com <ki...@gmail.com> #659
to...@gmail.com <to...@gmail.com> #660
This is basic "should work" functionality - Are you just a bunch of converted windows developers?
jo...@gmail.com <jo...@gmail.com> #661
nv...@gmail.com <nv...@gmail.com> #662
bj...@gmail.com <bj...@gmail.com> #663
aa...@gmail.com <aa...@gmail.com> #664
un...@gmail.com <un...@gmail.com> #665
mi...@gmail.com <mi...@gmail.com> #666
om...@gmail.com <om...@gmail.com> #667
P.S. My dad didn't enjoy the mature text message/ inside joke that i INTENDED to send to my friend!
[Deleted User] <[Deleted User]> #668
le...@gmail.com <le...@gmail.com> #669
pa...@gmail.com <pa...@gmail.com> #670
I text my daughter, back and forth, back and forth, and suddenly I am writing to my ex-husband. Not fatal, no, but not too cool, either.
My least favorite related weirdness: MMS at your own risk! That photo will be attached to every SMS you try to send for a week! I have to keep hitting Remove, Remove, Remove.
jo...@gmail.com <jo...@gmail.com> #671
pi...@gmail.com <pi...@gmail.com> #672
su...@gmail.com <su...@gmail.com> #673
em...@gmail.com <em...@gmail.com> #674
On a pretty regular basis, the htc sense sms widget will display a new message as though it is from one of my contacts however; when I touch the widget and launch the full sms app, the message appears to be from someone else. I can literally switch back and fourth from the home screen widget to the actual sms app and the widget will display the new message from the wrong person while the actual sms app shows it from the correct contact. During these times, if I reply to the message (from either the widget our full sms app), my reply goes to the wrong person. The only way to correct the problem is to power cycle the phone. Once the phone restarts, both the sms home screen widget and full sms app display the correct and actual contact whom sent the message and if I reply, it correctly replies to the correct sender.
I am part of a pretty large network of android users (friends, family, co-workers) who all run different hardware (htc, motorola, samsung) with various custom interfaces (sense ui, motoblur, touchwhiz, vanilla android) and none have reported sharing this issue with me. I however; have been able to show several people this bug as it's happened. There have actually been times when the sms widget has displayed two different messages from the same contact. One message actually being from that contact and the other being misidentified by this bug. Again, during these times, if I open the full sms app, all messages are displayed from their correct contact but, a power cycle is necessary to ensure my replies go to the right people and not the incorrect contact as displayed by the home screen widget. On a final note, I will say that this bug has only occurred with received messages. Although I've experienced this issue many times, it has never occurred with new messages I compose. It only affects the identifying of the sender on received messages and my replies to those incorrectly identified messages. Hope this helps!
ri...@gmail.com <ri...@gmail.com> #675
Privacy much?
ga...@gmail.com <ga...@gmail.com> #676
je...@weareron.in <je...@weareron.in> #677
This is a critical bug.
ha...@googlemail.com <ha...@googlemail.com> #678
nd...@gmail.com <nd...@gmail.com> #679
mi...@gmail.com <mi...@gmail.com> #680
re...@gmail.com <re...@gmail.com> #681
ki...@gmail.com <ki...@gmail.com> #682
mi...@gmail.com <mi...@gmail.com> #683
tu...@gmail.com <tu...@gmail.com> #684
mi...@gmail.com <mi...@gmail.com> #685
ja...@gmail.com <ja...@gmail.com> #686
od...@gmail.com <od...@gmail.com> #687
ju...@gmail.com <ju...@gmail.com> #688
ds...@gmail.com <ds...@gmail.com> #689
ce...@gmail.com <ce...@gmail.com> #690
an...@gmail.com <an...@gmail.com> #691
le...@gmail.com <le...@gmail.com> #692
1. Backup your current messages (plenty of apps available for that).
2. Backup your contact list (to a file on your phone and/or your account).
3. Remove all SMS messages.
4. Delete your contact list (you *did* remember to back it up first, right?)
5. Turn your phone off, then back on again.
6. Restore your contact list & any messages that you want to keep.
7. After doing the above, you may want to try using a third-party SMS app (I use Handcent, but there are plenty out there & most of them are free).
bi...@gmail.com <bi...@gmail.com> #693
nd...@gmail.com <nd...@gmail.com> #694
gr...@gmail.com <gr...@gmail.com> #695
to...@gmail.com <to...@gmail.com> #696
mo...@gmail.com <mo...@gmail.com> #697
ir...@gmail.com <ir...@gmail.com> #698
ro...@gmail.com <ro...@gmail.com> #699
jo...@gmail.com <jo...@gmail.com> #700
tr...@gmail.com <tr...@gmail.com> #701
sh...@gmail.com <sh...@gmail.com> #702
ch...@gmail.com <ch...@gmail.com> #703
ja...@gmail.com <ja...@gmail.com> #704
bi...@gmail.com <bi...@gmail.com> #705
gi...@gmail.com <gi...@gmail.com> #706
ts...@gmail.com <ts...@gmail.com> #707
le...@gmail.com <le...@gmail.com> #708
wa...@gmail.com <wa...@gmail.com> #709
pa...@gmail.com <pa...@gmail.com> #710
ec...@gmail.com <ec...@gmail.com> #711
sp...@gmail.com <sp...@gmail.com> #712
sx...@gmail.com <sx...@gmail.com> #713
dl...@gmail.com <dl...@gmail.com> #714
bb...@gmail.com <bb...@gmail.com> #715
I have experienced this issue only once and thank goodness it was not of great importance. But I have no clue who I told "Merry Christmas, I love you" to. The message was meant for my kids not someone from my recent call list. Please address this concern.
au...@gmail.com <au...@gmail.com> #716
(DROID incredible)
do...@gmail.com <do...@gmail.com> #717
This needs to be fixed pronto.
th...@gmail.com <th...@gmail.com> #718
kp...@gmail.com <kp...@gmail.com> #719
ba...@gmail.com <ba...@gmail.com> #720
nr...@gmail.com <nr...@gmail.com> #721
gi...@gmail.com <gi...@gmail.com> #722
dg...@gmail.com <dg...@gmail.com> #723
dr...@gmail.com <dr...@gmail.com> #724
gi...@gmail.com <gi...@gmail.com> #725
Is this effecting only Non GSM networks? I do over 500 sms a day and have never seen the problem and have always used only built in message application.
For those having the problem ensure you have not installed a third party messaging app. Those can be source of the problem as you will have 2 different apps accessing the same database.
If there is a problem it really needs to be fixed but don't forget this is simply a development tracker.
Please STOP the Me TOO fix not threads as they are not useful.
If you have had problems post the details about issue and the type of phone to help the developers.
While I have not experienced the problem I am sure there are some that have and the chit chat don't help fix. While it is not a good problem has not been escalated to critical because it does not stop the os from functioning. Also dont forget this may not even be a problem with android but the overlay data installed by the manufacturer like HTC sense. Please post what device and carrier and if you have any third party apps for messaging
rn...@gmail.com <rn...@gmail.com> #726
gi...@gmail.com <gi...@gmail.com> #727
da...@gmail.com <da...@gmail.com> #728
da...@gmail.com <da...@gmail.com> #729
do...@gmail.com <do...@gmail.com> #730
co...@gmail.com <co...@gmail.com> #731
jg...@gmail.com <jg...@gmail.com> #732
gi...@gmail.com <gi...@gmail.com> #733
ju...@gmail.com <ju...@gmail.com> #734
pa...@gmail.com <pa...@gmail.com> #735
During some pretty normal messaging, I got a text from friend A. Upon returning to the master thread list, the thread in question was listed under a different friend's (friend B) name and number. All replies in this thread would go to friend B although the incoming messages were from friend A.
Clearing the messaging application's data from the application management screen worked for me, and the thread is now listed under the correct name and number.
[Deleted User] <[Deleted User]> #736
ka...@gmail.com <ka...@gmail.com> #737
pa...@gmail.com <pa...@gmail.com> #738
so...@gmail.com <so...@gmail.com> #739
cr...@gmail.com <cr...@gmail.com> #740
You can consider me a former Android user if it doesn't.
dr...@gmail.com <dr...@gmail.com> #741
in...@gmail.com <in...@gmail.com> #742
de...@l8r.net <de...@l8r.net> #743
jt...@gmail.com <jt...@gmail.com> #744
se...@yahoo.com <se...@yahoo.com> #745
If you guys could fix this, that would be fantastic.
Thanks for your time.
[Deleted User] <[Deleted User]> #746
vi...@gmail.com <vi...@gmail.com> #747
mi...@gmail.com <mi...@gmail.com> #748
vi...@gmail.com <vi...@gmail.com> #749
heh, I made a praising comment. Somehow it got sent to the wrong thread! Sorry!
fe...@gmail.com <fe...@gmail.com> #750
bi...@superbimble.com <bi...@superbimble.com> #751
to...@gmail.com <to...@gmail.com> #752
mi...@gmail.com <mi...@gmail.com> #753
be...@gmail.com <be...@gmail.com> #754
za...@gmail.com <za...@gmail.com> #755
je...@googlemail.com <je...@googlemail.com> #756
ab...@gmail.com <ab...@gmail.com> #757
ya...@gmail.com <ya...@gmail.com> #758
es...@gmail.com <es...@gmail.com> #759
th...@gmail.com <th...@gmail.com> #760
ka...@gmail.com <ka...@gmail.com> #761
wi...@gmail.com <wi...@gmail.com> #762
Samsung Captivate (SGH-I897), Cognition Froyo ROM (Cognition.v2.2.Beta4.UCJI6).
1) Texted to an adhoc list of 6 recip (restaurant details) mixed from address book and direct entry of phone numbers.
2) Text came in from "Mary" (she has an entry in my addressbook)
3) typed reply to Mary's text. hit send.
4) screen flipped to first text and added it six outgoing msgs
All love to Andy!
am...@gmail.com <am...@gmail.com> #763
bl...@gmail.com <bl...@gmail.com> #764
ar...@gmail.com <ar...@gmail.com> #765
mr...@gmail.com <mr...@gmail.com> #766
pa...@gmail.com <pa...@gmail.com> #767
FIX IT!
le...@gmail.com <le...@gmail.com> #768
pa...@gmail.com <pa...@gmail.com> #769
pa...@gmail.com <pa...@gmail.com> #770
wi...@gmail.com <wi...@gmail.com> #771
The first issue is tapping on a contact to bring up the conversation thread. This will occasionally bring up the thread below it. Again, I assumed I just pressed the wrong person, and moved on. When 2.2 rolled out, I noticed it happening more frequently, but still, I chalked it up to user error.
The other seems to be sending messages to the wrong contact. Again, this seems to happen so that the message is sent to the recipient of the message thread below. This seems to occur much less frequently; I only know of one instance where this has happened, and it was because my short 'ok' text got sent--en masse--to 25 different people. Some of whom were quite confused.
I would mention that it seems that this issue should be elevated above medium; although it seems that it need not be mentioned at this point, given the press that this particular bug has gotten so far.
I hope I've contributed to the discussion (and not just added another 'me too' comment), and I can assist further in providing more details, if they would be relevant.
sc...@gmail.com <sc...@gmail.com> #772
So this is the same priority as adding arabaic language to Android, or intermittent issues with SSIDs with hidden names huh? Medium priority. Wake up. This is a mission-critical, urgent, highest priority bug.
mr...@gmail.com <mr...@gmail.com> #773
to...@gmail.com <to...@gmail.com> #774
ou...@gmail.com <ou...@gmail.com> #775
ke...@gmail.com <ke...@gmail.com> #776
ni...@gmail.com <ni...@gmail.com> #777
ma...@gmail.com <ma...@gmail.com> #778
sn...@gmail.com <sn...@gmail.com> #779
NOWWWWWWWWWWW!!!!!!!!!
ja...@yahoo.com <ja...@yahoo.com> #780
I have noticed on numerous occasions that when I open an SMS thread for a particular contact it will instead open the thread for another seemingly random contact. The "bad" thread is always a conversation that still exists in my logs, and never for a contact with whom I do not have an open conversation. If you aren't paying attention it can easily lead to a message being sent to the wrong contact.
I run Handcent SMS for its popup notifications, but I use the stock app for composing messages. I have not noticed this occurence with Handcent.
gr...@gmail.com <gr...@gmail.com> #781
mc...@gmail.com <mc...@gmail.com> #782
[Deleted User] <[Deleted User]> #783
ch...@gmail.com <ch...@gmail.com> #784
ka...@gmail.com <ka...@gmail.com> #785
cu...@gmail.com <cu...@gmail.com> #786
g....@gmail.com <g....@gmail.com> #787
so...@gmail.com <so...@gmail.com> #788
an...@gmail.com <an...@gmail.com> #789
ca...@gmail.com <ca...@gmail.com> #790
ha...@gmail.com <ha...@gmail.com> #791
kr...@gmail.com <kr...@gmail.com> #792
ja...@gmail.com <ja...@gmail.com> #793
It's also hard to select contact because sometimes random ones from the bottom of my list pop up instead.
Guess I might just have to switch.
pe...@gmail.com <pe...@gmail.com> #794
co...@gmail.com <co...@gmail.com> #795
jt...@gmail.com <jt...@gmail.com> #796
Fix this please.
fw...@gmail.com <fw...@gmail.com> #797
I am not sure, but as I amass more texts in my inbox, this could potentially be one of the contributing factors to the escalation of the SMS errors.
And I don't send texts to the wrong recipients anymore because it has become a habit to check whether my EVO selects the correct SMS thread. It is ridiculous and just plain annoying that I have to hit "back" so many times a day to be able to text the right person - it should just work.
je...@gmail.com <je...@gmail.com> #798
to...@gmail.com <to...@gmail.com> #799
rn...@gmail.com <rn...@gmail.com> #800
Way to be evil, Google... you're behaving just like a politician.
vt...@gmail.com <vt...@gmail.com> #801
fe...@gmail.com <fe...@gmail.com> #802
ne...@gmail.com <ne...@gmail.com> #803
cs...@gmail.com <cs...@gmail.com> #804
hu...@gmail.com <hu...@gmail.com> #805
lu...@gmail.com <lu...@gmail.com> #806
[Deleted User] <[Deleted User]> #807
[Deleted User] <[Deleted User]> #808
al...@gmail.com <al...@gmail.com> #809
sn...@gmail.com <sn...@gmail.com> #810
@pteale: plz notice that I didn't entirely blame facebook. I also stated "finish sending a text that you may have started drafting before switching to see the contents of a new incoming msg".
ni...@gmail.com <ni...@gmail.com> #811
fd...@gmail.com <fd...@gmail.com> #812
ca...@gmail.com <ca...@gmail.com> #813
jg...@gmail.com <jg...@gmail.com> #814
mi...@gmail.com <mi...@gmail.com> #815
For instance,
nn...@google.com <nn...@google.com> #816
I want to let everyone know that we are actively investigating this issue, and we hope to have an update soon. Obviously, this is a very difficult to reproduce bug.
Rather than replying "me too", you can star this issue to follow it. Just saying "me too" just obscures the useful information in this bug, and makes it harder to fix. Of course, if you have useful information to add to the bug, such as a system dump or an insightful analysis of the code, feel free to update the bug with your observations.
je...@gmail.com <je...@gmail.com> #817
sb...@gmail.com <sb...@gmail.com> #818
[Deleted User] <[Deleted User]> #819
step up your game!
fa...@gmail.com <fa...@gmail.com> #820
I have never experienced this issue, but hope they fix it for everyone else also, but most of the posts don't have version numbers, phone type, carrier, or anything else to help track down the issue. Either do it right, or don't post.
mi...@gmail.com <mi...@gmail.com> #821
makes
free
th...@gmail.com <th...@gmail.com> #822
pe...@gmail.com <pe...@gmail.com> #823
kr...@gmail.com <kr...@gmail.com> #824
ni...@gmail.com <ni...@gmail.com> #825
[Deleted User] <[Deleted User]> #826
th...@gmail.com <th...@gmail.com> #827
When my friend had it on verizon droid was in a message selected forward and chose contact but went to someone different. Personally I think that was HTC sense but fits this bug report.
fd...@gmail.com <fd...@gmail.com> #828
I found someone who may able to reproduce the bug, here is the post he made on a other forum (FROM
[quote]
If anyone is interested, evidently "Darth Mo" has been able to replicate it - found in ACentral Forums - entire post follows;
"It's not user error, or at least it's a combination of user technique and a possible design. It has to do with how the stock messaging app interacts with the Android system notification.
I recreated it this way. Open a text, but only from the notification bar. You will be taken directly to the conversation from that contact. Now, just hit the home button to get back to the home screen. Repeat this four times to let the open conversations build up. We'll call the earliest contact 1, the next 2, etc. for this example. Let's say you converse with these contacts over some time so that messages occur in this chronological order (opened from the notification menu if possible) : 1, you, 2, you, 3, you, 4, you, 1, 3, you, 3.
Now, you've read the message from contact 3, but quickly hit the back button because you need to send a message to contact 4. So you're back at the conversation list and select conversation 4. You compose and send your message and off you go. But, what can actually happen is that your message went to contact 1 because there is a bug that when you use the back button, it will take you to the conversation screen and when you select one, it will take you to the conversation with the last "unreplied" message received before the last conversation you didn't reply to, regardless of the one you actually select from the list. It's easy to miss that it took you to the wrong conversation as the on screen info can take a beat to update and it looks like you've select the right conversation. The kicker is the conversation list does highlight the one you meant to select, but will take you to that other conversation. It's as if it's saying, "Hey, I know you want to go to that one, but you opened this message and jumped out of it without replying. Maybe you didn't see it."
It's pretty easy for people to not have seen this for a few reasons:
1. You open messages directly from the messaging app
2. You close out every conversation using the back button and don't let them build up on top of each other
3. Messages can come in such a sequence that the conditions are never correct
4. It has actually happened, only the last "unreplied" message was from the conversation you actually intended to enter
I was able to create reliably using my Google voice number to send myself text and watched it bounce around conversations seemingly randomly. It was only when I looked at the times of each message with no replies that I saw what it was doing actually had order to it.
About 30 minutes of experimentation to figure it out, but I had to know how this was happening as I could see it leading to an egregious error later. Now to explain it to HTC..."
[/quote]
su...@gmail.com <su...@gmail.com> #829
Android's epic fail!
mk...@gmail.com <mk...@gmail.com> #830
When the wrong address issue occurs it's when I go to reply to a message recently received, usually accessed through the notification area.
ce...@gmail.com <ce...@gmail.com> #831
ma...@gmail.com <ma...@gmail.com> #832
this issue must be resolved!!!!
ma...@gmail.com <ma...@gmail.com> #833
m....@gmail.com <m....@gmail.com> #834
ad...@googlemail.com <ad...@googlemail.com> #835
Software number: 2.33.161.2
Build number: 2.33.161.2 CL284385
Kernel version: 2.6.32.15-g2633d94
htc-kernel@and18-2 #1
Baseband version: 32.49.00.32U_5.11.05.27
Cause of bug appears to be entering/exiting multiple threads in quick succession, and/or resuming threads via multitasking.
ta...@gmail.com <ta...@gmail.com> #836
je...@gmail.com <je...@gmail.com> #837
ma...@gmail.com <ma...@gmail.com> #838
so...@gmail.com <so...@gmail.com> #839
da...@gmail.com <da...@gmail.com> #840
The priority should be raised to ensure it is resolved a.s.a.p.
pi...@gmail.com <pi...@gmail.com> #841
I responded to a text message earlier this week and it went to "456", which isn't any sort of contact number I've heard of. This was especially bad, because I was talking to a girl I just started dating, who thought I was now ignoring her and since she didn't answer me, I thought she was ignoring me. See the problem? Your stupid bug is stopping me from getting laid.
bt...@gmail.com <bt...@gmail.com> #842
hs...@gmail.com <hs...@gmail.com> #843
mb...@gmail.com <mb...@gmail.com> #844
ma...@gmail.com <ma...@gmail.com> #845
rv...@gmail.com <rv...@gmail.com> #846
nw...@gmail.com <nw...@gmail.com> #847
sk...@gmail.com <sk...@gmail.com> #848
Poor form.
br...@gmail.com <br...@gmail.com> #849
but in my experience, what happens on my phone is: i select to text FRIEND 1 and it shows her as the intended recipient, i send it out to her. later i go check my messages, and it has sent the text to FRIEND 2, whom i haven't contacted at all since i got the phone. luckily, the message was "hey, i haven't seen you in forever. we should meet up for a drink"... pretty universal message. except it would have sucked if it went to my girlfriend.
ALSO, i don't know if this is part of the same defect, but sometimes, i select to text FRIEND 3, and when the text messaging screen comes up, FRIEND 4 is the intended recipient. hopefully i don't ever accidentally text my manager or boss instead of my girlfriend.
GOOGLE, HOW BAD WOULD THAT BE!!!
[Deleted User] <[Deleted User]> #850
1) how this bug, if exists, became so loud just in 1 DAY? if it really would exist, was 6 month old and so widespread, users would complain every day, not waiting for December 31, 2010.
2) how do you imagine a bug that appears some times, has no logic in behavior, any proofs of existing and SENDS SMS TO RANDOM RECIPIENTS. It's not a game or an app. It's a part of programming code, it can't CHOOSE RECIPIENTS, BECAUSE AUTO-CHOOSING OF RECIPIENTS NEEDS ADDED CODE, WHICH the BASIC message app CAN'T HAVE, IT'S AN ODD and IMPOSSIBLE CREATIVITY. What you try to describe looks like a senseless Chinese virus than a bug.
A bug could looks like:
* SMS appears in wrong thread, being send to RIGHT recipient.
* SMS appears in wrong thread, NOT being send to recipient.
* SMS appears in RIGHT thread, NOT being send to recipient.
@Google probably should close developers forums from ugly and useless trolling from empty accounts with names like '2624hjh' (sure thing, DEVELOPERS). Rating system maybe? Filter?
i can't open more comments, but on 2 pages:
++++++++++++++++++++++++++++++++++++++++++++++++
'switch' - 26 times
'iPone' - 40 times
++++++++++++++++++++++++++++++++++++++++++++++++
Is this about BUG? about fixing it? about finding it? about discussing it? about showing printscreens or useful fragments of code?
This place looks absolutely useless and unprofessional thanks to trolls from around the web here.
'LOL! ASAP I seee this bug everyday. My friends, my girl. my parents..my grandMO! Pleeeeese' <<< Can such people be an Android owners? They're trolls! If you see this bug everyday, go and purchase something other.
I saw this complaint in June, when it appeared exactly at the time Android starts especially quickly gaining momentum. The reason of its appearing here was clear for me than and now even clearly. Just before CES 2011.
@Google, you need to explain clearly that happens '...', because '...', that 0,02% of users could see this bug and it looks like '...', and if it exists, resolve it in few hours to stop useless yelling about this REINVENTED just in time thread.
jo...@gmail.com <jo...@gmail.com> #851
Intermittently you will click the first thread in the "messaging" list and it will go to the first thread that is out of view on the screen. example, threads 1,2,3,4,5 visible on the screen, click #1 and it will open #6.
I have sent MANY inappropriate txts to the wrong person-- its getting out of hand. It Did get a LITTLE better with the 2.2.1 update.
dr...@gmail.com <dr...@gmail.com> #852
jo...@gmail.com <jo...@gmail.com> #853
af...@gmail.com <af...@gmail.com> #854
br...@gmail.com <br...@gmail.com> #855
lo...@gmail.com <lo...@gmail.com> #856
So for me, my workaround is to only send an SMS when I click an existing thread, and the correct thread opens. If it doesn't I'll hit back, and reselect the one I want.
bo...@gmail.com <bo...@gmail.com> #857
. Messaging.
-Send SMS message to RecipientA.
-Message appears to be successful and shows as sent in RecipientA's thread
- but RecipientX gets it
-RecipientA gets nothing
This is across different networks and only to contacts that are in my phone
a....@gmail.com <a....@gmail.com> #858
I want to send an SMS to person A
I press on A's message thread but it opens up person B's and i dont notice.
Message gets sent & it shows in person B's message thread, but Person A still gets the message.
Is a weird one
tk...@gmail.com <tk...@gmail.com> #859
mr...@gmail.com <mr...@gmail.com> #860
Stock messaging app.
Same issue, plus takes FOREVER to delete message threads (or just force closes the message app).
je...@gmail.com <je...@gmail.com> #861
l_...@pacbell.net <l_...@pacbell.net> #862
r2...@gmail.com <r2...@gmail.com> #863
This is usually reproducible by clicking the back button INTO the message app, and then immediately clicking on person A.
It's almost like what I see as the current screen and what the module handling the touch input sees as the current screen aren't necessarily the same thing.
The other part of the bug where I message someone and I didn't know it freaks me the hell out, but I haven't caught it.
te...@gmail.com <te...@gmail.com> #864
me...@gmail.com <me...@gmail.com> #865
me...@gmail.com <me...@gmail.com> #866
me...@gmail.com <me...@gmail.com> #867
al...@gmail.com <al...@gmail.com> #868
ha...@gmail.com <ha...@gmail.com> #869
mi...@gmail.com <mi...@gmail.com> #870
ho...@gmail.com <ho...@gmail.com> #871
Dec 26, 2009
690 people starred this issue.
Type-Defect
Priority-Medium
Comments: 716
Tell slashdot about that!
st...@gmail.com <st...@gmail.com> #872
li...@gmail.com <li...@gmail.com> #873
That's just one I can remember actually track back because I checked the details of the sent message.
I thought it was some random bug introduced by a third party app.
GOOGLE, are you in possession of *NO* ability to grade importance of bugs, how they affect users, and possible repercussions?
You seem as inept at prioritizing bugs and/or important issues as Zuckerberg is at noticing potential privacy uproars.
Idiotic. Moronic. Inexcusable.
Stop having the IE team grade bugs for you.
sc...@gmail.com <sc...@gmail.com> #874
[Deleted User] <[Deleted User]> #875
fh...@comcast.net <fh...@comcast.net> #876
so...@gmail.com <so...@gmail.com> #877
[Deleted User] <[Deleted User]> #878
G 5
@r;XABBAXr:#:
,3@@@@@@@@@@@@h,
#@@r H@@@@@@B :@@@
.@@@@. 2@#MM#@& @@@@.
5@@@Mr h@@@H; @@@@@@@@######@@@@@@@@
:,.. ,,.. ,,., ,,......... r@@@@@@@@9 X@@@@@@@@r X52&M@@@@@@@@@@@#B&h3G
@@@@ r@@@@r ;@@@@ @@@@@@@@@@@ .@@@@@@@@@@@r @@@@@@@@@@@2 sHA; ; .; ,&BS
#@@@r M@@@@M A@@@, @@@@AAHHH#M r@@#MM###@@@@@@@#MMM##@@@@ 3@@@@: @@@@@@@#BBHHHB##@@@@@@, @@@@@
.@@@M @@#@@@ @@@M @@@@ ,@#MMMMMM##@@@#MMMMMMM##@@ H@@@@r @@@@@@@@@@@@@@@@@@@@@@ @@@@@
#@@@ ;@@;3@@: .@#@: #@#@ @@#MMMMMMM#MMMMMMMMMMMM@X 2@##@: @@###################@ @@#@@
;@@@: H@@ r@@A 5@@@ #@#@@@@@@@B @@#MMMMMMMMMMMMMMMMMM@@ 5@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
@@@X @@B @@@ M@@r #@#@hGAAA#s .@@##MMMMMMMMMMMMMMM@@ 5@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
2@@M:@@; @@@:@@@ #@## A@@##MMMMMMMMMMMM@@ 2@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
@@@#@@ X@@##@S #@#@ ,#@@##MMMMMMMMM@# 3@##@; @@MMMMMMMMMMMMMMMMMM#@ @@#@@
#@@@@& .@@@@@ @@@@@@@@@@@; .A@@@##MMMMM@G .@@@@ @@MMMMMMMMMMMMMMMMMM#@ &@@@S
,@##@, #@#@h #@@@@@@@@@@; i@@@@#M#@s @@MMMMMMMMMMMMMMMMMM#@
.2@@@@. @@###MMMM#####MMMM##@@.
,5 #@@@##MMM#@@@@#MMM#@@@
@@M## M@M#@
@@M#@ #@M#@
@@#@@ @@##@
@@@@@ @@@@@.
rSs. rSs.
mi...@gmail.com <mi...@gmail.com> #879
FIX IT!!!!
ky...@gmail.com <ky...@gmail.com> #880
ky...@gmail.com <ky...@gmail.com> #881
This page doesn't need hundreds upon hundreds of posts saying "herp derp I have this problem too <_>"
And as another poster said earlier, if this were SUCH a big deal/universal android problem this page would've gotten a TON more attention earlier, and there'd be posts about this all over phone forums.
If you guys want do something to actually help other than just whine, bitch, and complain - attach logcats or system dumps to your posts. Otherwise...
B-/ deal with it
ri...@gmail.com <ri...@gmail.com> #882
[Deleted User] <[Deleted User]> #883
STOP YELLING and TROLLING!
If even all of these complaints are real (it's exactly not true) means that ONLY 0.005% of Android users have this bug!
**************************************************************************
by the way, dropped calls and bad reception could be fatal, when you call emergency or police.
cc...@gmail.com <cc...@gmail.com> #884
wd...@gmail.com <wd...@gmail.com> #885
08...@gmail.com <08...@gmail.com> #886
ki...@gmail.com <ki...@gmail.com> #887
ix...@gmail.com <ix...@gmail.com> #888
This is a bug report page, not a facebook comment: no one cares about your opinions.
pa...@gmail.com <pa...@gmail.com> #889
dh...@gmail.com <dh...@gmail.com> #890
ea...@gmail.com <ea...@gmail.com> #891
sa...@gmail.com <sa...@gmail.com> #892
wtf man...
ch...@gmail.com <ch...@gmail.com> #893
mf...@gmail.com <mf...@gmail.com> #894
bl...@gmail.com <bl...@gmail.com> #895
Please, fix this soon to make sure I never have this problem.
ma...@gmail.com <ma...@gmail.com> #896
st...@gmail.com <st...@gmail.com> #897
zy...@gmail.com <zy...@gmail.com> #898
bo...@gmail.com <bo...@gmail.com> #899
wi...@gmail.com <wi...@gmail.com> #900
And you want us to trust you with the mined data of our lives?
Fix
It
Now
hu...@gmail.com <hu...@gmail.com> #901
It would be one thing for a text message to just straight up FAIL randomly and not get sent to anyone but to appear to be sent to one person and to have actually been sent to another? Deal breaker.
I will definitely never be recommending Android to friends/family.
pa...@gmail.com <pa...@gmail.com> #902
I guess we can call this the "growing pains" of a semi-open source platform.
Still, Google & phone manufacturers NEED to get this done ASAP.
mr...@gmail.com <mr...@gmail.com> #903
do...@gmail.com <do...@gmail.com> #904
be...@gmail.com <be...@gmail.com> #905
sl...@gmail.com <sl...@gmail.com> #906
us...@gmail.com <us...@gmail.com> #907
ph...@gmail.com <ph...@gmail.com> #908
jd...@gmail.com <jd...@gmail.com> #909
ch...@gmail.com <ch...@gmail.com> #910
sc...@gmail.com <sc...@gmail.com> #911
wh...@gmail.com <wh...@gmail.com> #912
ro...@gmail.com <ro...@gmail.com> #913
Otherwise it just looks like a bunch of idiots lost in Apple's reality distortion field are making sh!t up. I have been using my Droid for over a year now and haven't had this happen once.
jm...@gmail.com <jm...@gmail.com> #914
ta...@gmail.com <ta...@gmail.com> #915
em...@gmail.com <em...@gmail.com> #916
mo...@gmail.com <mo...@gmail.com> #917
et...@gmail.com <et...@gmail.com> #918
[Deleted User] <[Deleted User]> #919
da...@hawaii.rr.com <da...@hawaii.rr.com> #920
hi...@gmail.com <hi...@gmail.com> #921
le...@gmail.com <le...@gmail.com> #922
ta...@gmail.com <ta...@gmail.com> #923
no...@gmail.com <no...@gmail.com> #924
jo...@gmail.com <jo...@gmail.com> #925
ra...@gmail.com <ra...@gmail.com> #926
ra...@gmail.com <ra...@gmail.com> #927
ra...@gmail.com <ra...@gmail.com> #928
ro...@gmail.com <ro...@gmail.com> #929
[Deleted User] <[Deleted User]> #930
I've now also trained myself to always check what thread i'm in before i start replying, to make sure i was taken to the correct one, and to double-check the destination contact before i hit send once i've composed my reply. Since i've been doing this (a few months), i have not had a problem with a txt going to the wrong destination even once, whereas it's happened many many times before, so i suspect that that's the real bug.
This particular bug happens to me several times a week. Referring to comment 828, i do usually hit home to get out of the thread, and i'll often leave a composed message unsent while i go do something else, so that comment makes a lot of sense to me.
I'm on an N1 bought straight from google, fully up to date on android 2.2.
st...@gmail.com <st...@gmail.com> #931
st...@gmail.com <st...@gmail.com> #932
er...@gmail.com <er...@gmail.com> #933
mi...@gmail.com <mi...@gmail.com> #934
mi...@gmail.com <mi...@gmail.com> #935
pk...@gmail.com <pk...@gmail.com> #936
pj...@hushmail.com <pj...@hushmail.com> #937
64...@gmail.com <64...@gmail.com> #938
kh...@gmail.com <kh...@gmail.com> #939
kh...@gmail.com <kh...@gmail.com> #940
ba...@gmail.com <ba...@gmail.com> #941
pj...@hushmail.com <pj...@hushmail.com> #942
al...@gmail.com <al...@gmail.com> #943
[Deleted User] <[Deleted User]> #944
to...@gmail.com <to...@gmail.com> #945
co...@gmail.com <co...@gmail.com> #946
al...@googlemail.com <al...@googlemail.com> #947
da...@gmail.com <da...@gmail.com> #948
pj...@hushmail.com <pj...@hushmail.com> #949
jo...@gmail.com <jo...@gmail.com> #950
I know its not an interface thing because just last week I was very specific about who I was sending a txt message to. Saw a thread with the person, opened the thread, typed my message, made sure it was the correct person (saw their name and photo), hit send then the screen switched to the thread of someone else.
Anyways, seen it too many times on too many different ROMS and devices for it to be a fluke.
nk...@gmail.com <nk...@gmail.com> #951
ma...@gmail.com <ma...@gmail.com> #952
k2...@gmail.com <k2...@gmail.com> #953
lo...@gmail.com <lo...@gmail.com> #954
sh...@gmail.com <sh...@gmail.com> #955
sg...@gmail.com <sg...@gmail.com> #956
I would be shocked if a vast majority of users didn't think the same way. This doesn't need to be "high priority", this needs to be "HIGHEST priority"!
se...@gmail.com <se...@gmail.com> #957
fu...@gmail.com <fu...@gmail.com> #958
JM...@hotmail.com <JM...@hotmail.com> #959
th...@gmail.com <th...@gmail.com> #960
dg...@gmail.com <dg...@gmail.com> #961
It also explains why myself and a lot of Android users have never experienced it, but it should give Google good grounds to start fixing it. I guess iPhone users have their alarm issues, android users have their sms issues :P
fr...@gmail.com <fr...@gmail.com> #962
do...@gmail.com <do...@gmail.com> #963
te...@gmail.com <te...@gmail.com> #964
kr...@gmail.com <kr...@gmail.com> #965
na...@gmail.com <na...@gmail.com> #966
jo...@gmail.com <jo...@gmail.com> #967
sa...@gmail.com <sa...@gmail.com> #968
br...@gmail.com <br...@gmail.com> #969
jo...@gmail.com <jo...@gmail.com> #970
i sent to A,
it showed: sent to B,
the fact is: it sent to A (according to message details).
Need to fix it right the way!
to...@gmail.com <to...@gmail.com> #971
to...@gmail.com <to...@gmail.com> #972
ti...@gmail.com <ti...@gmail.com> #973
xu...@gmail.com <xu...@gmail.com> #974
03...@gmail.com <03...@gmail.com> #975
fs...@gmail.com <fs...@gmail.com> #976
ja...@gmail.com <ja...@gmail.com> #977
no...@gmail.com <no...@gmail.com> #978
we...@gmail.com <we...@gmail.com> #979
ma...@gmail.com <ma...@gmail.com> #980
Hopefully this bug gets fixed soon.
ti...@gmail.com <ti...@gmail.com> #981
da...@gmail.com <da...@gmail.com> #982
jr...@gmail.com <jr...@gmail.com> #983
yu...@gmail.com <yu...@gmail.com> #984
sg...@gmail.com <sg...@gmail.com> #985
al...@gmail.com <al...@gmail.com> #986
tr...@gmail.com <tr...@gmail.com> #987
qq...@gmail.com <qq...@gmail.com> #988
he...@gmail.com <he...@gmail.com> #989
ls...@gmail.com <ls...@gmail.com> #990
6l...@gmail.com <6l...@gmail.com> #991
ed...@gmail.com <ed...@gmail.com> #992
wa...@gmail.com <wa...@gmail.com> #993
an...@gmail.com <an...@gmail.com> #994
zh...@gmail.com <zh...@gmail.com> #995
wa...@gmail.com <wa...@gmail.com> #996
wi...@gmail.com <wi...@gmail.com> #997
gu...@gmail.com <gu...@gmail.com> #998
ja...@gmail.com <ja...@gmail.com> #999
ka...@gmail.com <ka...@gmail.com> #1000
ha...@gmail.com <ha...@gmail.com> #1001
The main advantage I saw in getting a Google product is that I knew bugs like these can be fixed fast plz don't let us down
ta...@gmail.com <ta...@gmail.com> #1002
so...@gmail.com <so...@gmail.com> #1003
an...@gmail.com <an...@gmail.com> #1004
in...@gmail.com <in...@gmail.com> #1005
pe...@gmail.com <pe...@gmail.com> #1006
fa...@gmail.com <fa...@gmail.com> #1007
th...@gmail.com <th...@gmail.com> #1008
ci...@gmail.com <ci...@gmail.com> #1009
vi...@gmail.com <vi...@gmail.com> #1010
gu...@gmail.com <gu...@gmail.com> #1011
i hate the android,i love symbian!
re...@gmail.com <re...@gmail.com> #1012
xi...@gmail.com <xi...@gmail.com> #1013
je...@gmail.com <je...@gmail.com> #1014
fr...@gmail.com <fr...@gmail.com> #1015
av...@gmail.com <av...@gmail.com> #1016
jo...@gmail.com <jo...@gmail.com> #1017
sh...@139.com <sh...@139.com> #1018
tr...@gmail.com <tr...@gmail.com> #1019
I've had personal messages go to the wrong person because of these bugs. It's embarrassing.
I cannot believe something so fundamental hasn't been fixed!
I#m feeling let down by Google. :-/
th...@gmail.com <th...@gmail.com> #1020
Today I sent a text asking about a contract from a potential employer - AND IT WENT TO MY CURRENT BOSS.
If this huts my career, I will be looking into legal action. Google has a responsibility to make sure it's product is fit for the purpose it is sold for.
My phone is supposed to be a communication device - not a miscommunication device.
iv...@gmail.com <iv...@gmail.com> #1021
yc...@gmail.com <yc...@gmail.com> #1022
sf...@gmail.com <sf...@gmail.com> #1023
b8...@gmail.com <b8...@gmail.com> #1024
he...@gmail.com <he...@gmail.com> #1025
bi...@gmail.com <bi...@gmail.com> #1026
js...@gmail.com <js...@gmail.com> #1027
ju...@gmail.com <ju...@gmail.com> #1028
Please fix this.
fr...@gmail.com <fr...@gmail.com> #1029
dp...@gmail.com <dp...@gmail.com> #1030
ke...@gmail.com <ke...@gmail.com> #1031
ka...@hotmail.fr <ka...@hotmail.fr> #1032
mn...@gmail.com <mn...@gmail.com> #1033
u9...@kallnet.fo <u9...@kallnet.fo> #1034
If you cannot trust your phone, it makes texting a horrible experience.
we...@gmail.com <we...@gmail.com> #1035
ya...@gmail.com <ya...@gmail.com> #1036
kr...@gmail.com <kr...@gmail.com> #1037
su...@gmail.com <su...@gmail.com> #1038
yu...@gmail.com <yu...@gmail.com> #1039
pa...@gmail.com <pa...@gmail.com> #1040
bw...@gmail.com <bw...@gmail.com> #1041
dr...@gmail.com <dr...@gmail.com> #1042
google?
i dont care
may be is apple
se...@gmail.com <se...@gmail.com> #1043
[Deleted User] <[Deleted User]> #1044
ke...@gmail.com <ke...@gmail.com> #1045
zh...@gmail.com <zh...@gmail.com> #1046
zh...@gmail.com <zh...@gmail.com> #1047
ti...@gmail.com <ti...@gmail.com> #1048
tr...@gmail.com <tr...@gmail.com> #1049
se...@gmail.com <se...@gmail.com> #1050
Google please make Android RELIABLE.
ee...@gmail.com <ee...@gmail.com> #1051
dd...@gmail.com <dd...@gmail.com> #1052
yu...@gmail.com <yu...@gmail.com> #1053
ex...@gmail.com <ex...@gmail.com> #1054
si...@gmail.com <si...@gmail.com> #1055
ch...@gmail.com <ch...@gmail.com> #1056
ca...@gmail.com <ca...@gmail.com> #1057
m1...@gmail.com <m1...@gmail.com> #1058
wy...@gmail.com <wy...@gmail.com> #1059
je...@gmail.com <je...@gmail.com> #1060
br...@gmail.com <br...@gmail.com> #1061
ed...@gmail.com <ed...@gmail.com> #1062
ch...@gmail.com <ch...@gmail.com> #1063
ja...@gmail.com <ja...@gmail.com> #1064
j....@gmail.com <j....@gmail.com> #1065
is...@gmail.com <is...@gmail.com> #1066
el...@gmail.com <el...@gmail.com> #1067
de...@gmail.com <de...@gmail.com> #1068
ca...@gmail.com <ca...@gmail.com> #1069
ba...@gmail.com <ba...@gmail.com> #1070
ke...@gmail.com <ke...@gmail.com> #1071
fx...@gmail.com <fx...@gmail.com> #1072
me...@gmail.com <me...@gmail.com> #1073
an...@gmail.com <an...@gmail.com> #1074
ac...@gmail.com <ac...@gmail.com> #1075
ev...@gmail.com <ev...@gmail.com> #1076
an...@gmail.com <an...@gmail.com> #1077
xi...@gmail.com <xi...@gmail.com> #1078
[Deleted User] <[Deleted User]> #1079
ti...@gmail.com <ti...@gmail.com> #1080
em...@gmail.com <em...@gmail.com> #1081
Please Fix it
ya...@gmail.com <ya...@gmail.com> #1082
ch...@gmail.com <ch...@gmail.com> #1083
jo...@gmail.com <jo...@gmail.com> #1084
Please Fix it...
il...@gmail.com <il...@gmail.com> #1085
mi...@gmail.com <mi...@gmail.com> #1086
go...@gmail.com <go...@gmail.com> #1087
sp...@gmail.com <sp...@gmail.com> #1088
ge...@gmail.com <ge...@gmail.com> #1089
ge...@gmail.com <ge...@gmail.com> #1090
ku...@gmail.com <ku...@gmail.com> #1091
ch...@gmail.com <ch...@gmail.com> #1092
zz...@gmail.com <zz...@gmail.com> #1093
fu...@gmail.com <fu...@gmail.com> #1094
vo...@gmail.com <vo...@gmail.com> #1095
je...@gmx.com <je...@gmx.com> #1096
xa...@gmail.com <xa...@gmail.com> #1097
bh...@gmail.com <bh...@gmail.com> #1098
ch...@gmail.com <ch...@gmail.com> #1099
je...@gmx.com <je...@gmx.com> #1100
je...@gmx.com <je...@gmx.com> #1101
Google, REMOVE this thread. It's only about tech-trolling.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
ch...@gmail.com <ch...@gmail.com> #1102
nt...@gmail.com <nt...@gmail.com> #1103
ga...@gmail.com <ga...@gmail.com> #1104
se...@gmail.com <se...@gmail.com> #1105
er...@gmail.com <er...@gmail.com> #1106
ol...@gmail.com <ol...@gmail.com> #1107
ja...@gmail.com <ja...@gmail.com> #1108
ae...@googlemail.com <ae...@googlemail.com> #1109
ja...@gmail.com <ja...@gmail.com> #1110
jb...@gmail.com <jb...@gmail.com> #1111
su...@gmx.co.uk <su...@gmx.co.uk> #1112
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
un...@gmail.com <un...@gmail.com> #1113
it...@gmail.com <it...@gmail.com> #1114
ou...@gmail.com <ou...@gmail.com> #1115
to...@gmail.com <to...@gmail.com> #1116
ho...@gmail.com <ho...@gmail.com> #1117
ta...@gmail.com <ta...@gmail.com> #1118
ts...@gmail.com <ts...@gmail.com> #1119
pa...@gmail.com <pa...@gmail.com> #1120
pa...@gmail.com <pa...@gmail.com> #1121
ju...@gmail.com <ju...@gmail.com> #1122
ko...@gmail.com <ko...@gmail.com> #1123
mi...@gmail.com <mi...@gmail.com> #1124
[Deleted User] <[Deleted User]> #1125
su...@gmx.co.uk <su...@gmx.co.uk> #1126
LOOK:
su...@gmail.com <su...@gmail.com> #1127
yk...@gmail.com <yk...@gmail.com> #1128
ja...@gmail.com <ja...@gmail.com> #1129
de...@gmail.com <de...@gmail.com> #1130
What a shame!
al...@gmail.com <al...@gmail.com> #1131
es...@gmail.com <es...@gmail.com> #1132
di...@gmail.com <di...@gmail.com> #1133
It's already assigned as "Critical" so your "plz fix it" posts _only_ waste your (and other people's) time.
es...@gmail.com <es...@gmail.com> #1134
es...@gmail.com <es...@gmail.com> #1135
ad...@gmail.com <ad...@gmail.com> #1136
fr...@gmail.com <fr...@gmail.com> #1137
th...@gmail.com <th...@gmail.com> #1138
lu...@gmail.com <lu...@gmail.com> #1139
jk...@gmail.com <jk...@gmail.com> #1140
lx...@gmail.com <lx...@gmail.com> #1141
For example : I have 10 people in the messages app (which was already open then sent to background by pressing home button). I get three new messages from people at the bottom of the list. I open up messages app. I click on the first person in the list to send them a txt and the wrong person comes up. It's because I did it too fast, and the list order wasn't updated yet (my analysis). It probably also has something to do with the amount of messages in the list.
I just did an estimated count, and I have around 120 phone numbers with conversations in messages, so that has to get sorted each time a new message comes in. It seems to take a little while. Something similar happens with phone numbers. Often times, if I click on a contact in the phone app before the list updates with missed calls and such, it will call the wrong person.
This happened to me about 2 weeks ago because I was driving and didn't wait long enough. In that scenario, I called a couple of people, or perhaps just picked up my phone to call someone, hit the name of someone I occasionally called and someone else was dialed. Started speaking not knowing that the phone had dialed the wrong person.
The only reason it doesn't happen too frequently now is because I realized something was wrong a really long time ago (when I first got my EVO), so I came up with the workaround of always having to wait for my msgs and phone list to update otherwise i'll message or call the wrong person.
Phone Spec : EVO 4G, Sprint, Android 2.2
Hope it helps, I don't think they are trolling as this has been a big issue for me as well. Don't know if it's the same issue though.
ma...@landalv.se <ma...@landalv.se> #1142
1. got message from number not in my contact list
2. replied
3. reply ended up at contact in my contact list (different number)
Lucky for me the one that should've got me message notified me, otherwise I wouldn't know something went wrong.
jo...@gmail.com <jo...@gmail.com> #1143
da...@gmail.com <da...@gmail.com> #1144
mi...@gmail.com <mi...@gmail.com> #1145
fe...@gmail.com <fe...@gmail.com> #1146
pi...@gmail.com <pi...@gmail.com> #1147
mo...@gmail.com <mo...@gmail.com> #1148
lo...@gmail.com <lo...@gmail.com> #1149
ca...@gmail.com <ca...@gmail.com> #1150
It'a about private life of people.
Thank's
su...@gmx.co.uk <su...@gmx.co.uk> #1151
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
dh...@gmail.com <dh...@gmail.com> #1152
su...@gmx.co.uk <su...@gmx.co.uk> #1153
pc...@gmail.com <pc...@gmail.com> #1154
si...@gmail.com <si...@gmail.com> #1155
When I replay to a message, in the header it will show I'm replying to my contact but after I hit send the header changes to Twitter and yes it posts on my twitter. So far it hasn't sent to anyone else just to my Twitter. I can't say as to what I do to make this happen I just no that sometimes this happeneds and sometimes it doesn't. This was sent from my stock SMS - here's an example of what happends -
XXXXXX to me
show details 29/12/2010 (4 days ago)
from XXXXX@hotmail.com>
to silvercat62@XXXXX
date Wed, Dec 29, 2010 at 08:23
subject SMS with XXXXX
mailed -
-----------------------------
from silvercat62@XXXXX
to Twitter <40404@unknown.email>
date Wed, Dec 29, 2010 at 09:27
subject SMS with Twitter
mailed -
Hope this helps in some way.
pw...@gmail.com <pw...@gmail.com> #1156
That is a good reason to support me keep using windows phone
ij...@gmail.com <ij...@gmail.com> #1157
Thanks
ch...@gmail.com <ch...@gmail.com> #1158
cg...@gmail.com <cg...@gmail.com> #1159
Also it doesn't matter what messaging client (handcent sms, go sms), bug will always occur!! (not as often though, it doesn't seem to happen to me when i'm only conversing with one person, only when alternating in conversations).
mm...@gmail.com <mm...@gmail.com> #1160
ma...@gmail.com <ma...@gmail.com> #1161
fa...@gmail.com <fa...@gmail.com> #1162
db...@gmail.com <db...@gmail.com> #1163
el...@gmail.com <el...@gmail.com> #1164
nh...@gmail.com <nh...@gmail.com> #1165
jo...@gmail.com <jo...@gmail.com> #1166
What phone you are using
What ROM you are using
What SMS app you are using
Any details regarding your experience with this bug, beyond "ZOMG me 2!!". Were you taking part in multiple SMS conversations simultaneously? Anything running in the background? Were you drunk and didn't realize you texted your boss instead of your girlfriend?
Steps to reliably reproduce the bug
me...@gmail.com <me...@gmail.com> #1167
re...@gmail.com <re...@gmail.com> #1168
an...@gmail.com <an...@gmail.com> #1169
dp...@gmail.com <dp...@gmail.com> #1170
Verizon
Motorola Droid
Android 2.2.1
Baseband C_01.43.01P
Kernel 2.6.32.9-g68eeef5 android-build@apa26 #1
Build number FRG83D
Stock messaging app
an...@gmail.com <an...@gmail.com> #1171
[Deleted User] <[Deleted User]> #1172
sh...@gmail.com <sh...@gmail.com> #1173
The first time it happened, the message looked perfect. It was an MMS, and the picture showed inline for the correct person, but minutes later, I received a response from someone I had not spoken with in months asking about the picture. I did not see that person listed in my history.
The next two times it happened were very similar. I used the pull-down notifications to get to the message, and typed my reply, but it ended up being sent to the person just below in the history.
I have been unable to duplicate this problem in the past week, but have tried many times, and will continue to try.
My phone is NOT rooted.
Hope this helps in some way.
[Deleted User] <[Deleted User]> #1174
ga...@gmail.com <ga...@gmail.com> #1175
dm...@gmail.com <dm...@gmail.com> #1176
di...@gmail.com <di...@gmail.com> #1177
ma...@gmail.com <ma...@gmail.com> #1178
Nexus One
Luxembourg. Provider: LUXGSN
@Google never have this kind of problem
and I have tested a lot of Android Phones
since the first Android.
Fix the Bug and please make a antitroll Filter.
Great Comment 850 that's nice :-)
ASAP wahah!!! what In the heart are you selling?
ma...@gmail.com <ma...@gmail.com> #1179
ki...@gmail.com <ki...@gmail.com> #1180
dz...@gmail.com <dz...@gmail.com> #1181
be...@gaide.net <be...@gaide.net> #1182
ro...@gmail.com <ro...@gmail.com> #1183
je...@gmail.com <je...@gmail.com> #1184
l....@gmail.com <l....@gmail.com> #1185
ni...@gmail.com <ni...@gmail.com> #1186
th...@gmail.com <th...@gmail.com> #1187
se...@gmail.com <se...@gmail.com> #1188
If you find Android to be complicated, move to iPhone. It's the "fisher-price my first cellphone"
ja...@gmail.com <ja...@gmail.com> #1189
ka...@gmail.com <ka...@gmail.com> #1190
va...@dr.com <va...@dr.com> #1191
It's just an example of ugly competitive practices. Maybe, such practices need a special investigation, since they pretend to be a real threat and directed against competitor's reputation?
bw...@gmail.com <bw...@gmail.com> #1192
Droid 2
va...@dr.com <va...@dr.com> #1193
va...@dr.com <va...@dr.com> #1194
one more>>>>
due to Android's openness and Google's spirit it's so simple to visit Android developer' forum and to create a thread describing any bug you are able to imagine. Just to troll. It's a bad situation. It's an extremely bad situation.
fd...@gmail.com <fd...@gmail.com> #1195
fa...@gmail.com <fa...@gmail.com> #1196
ye...@gmail.com <ye...@gmail.com> #1197
al...@gmail.com <al...@gmail.com> #1198
jw...@gmail.com <jw...@gmail.com> #1199
fo...@gmail.com <fo...@gmail.com> #1200
di...@gmail.com <di...@gmail.com> #1201
al...@gmail.com <al...@gmail.com> #1202
ko...@gmail.com <ko...@gmail.com> #1203
ja...@googlemail.com <ja...@googlemail.com> #1204
si...@gmail.com <si...@gmail.com> #1205
wv...@gmail.com <wv...@gmail.com> #1206
In the notification bar it says new message form person a
And when i click it it takes me to a new message from person b
person a has nothing to do with it, i haven't found a single connection between a and b so completely random !
Not as dangerous as being send to a thread with person b but also anoying !
wv...@gmail.com <wv...@gmail.com> #1207
bi...@gmail.com <bi...@gmail.com> #1208
fix this please..
br...@gmail.com <br...@gmail.com> #1209
mu...@gmail.com <mu...@gmail.com> #1210
What I typically see is that when I tap on an SMS message to reply, another person's message appears.
na...@gmail.com <na...@gmail.com> #1211
br...@gmail.com <br...@gmail.com> #1212
rb...@gmail.com <rb...@gmail.com> #1213
ca...@gmail.com <ca...@gmail.com> #1214
gm...@gmail.com <gm...@gmail.com> #1215
te...@gmail.com <te...@gmail.com> #1216
am...@gmail.com <am...@gmail.com> #1217
ha...@gmail.com <ha...@gmail.com> #1218
VERY SERIOUS STUFF THIS, SHOULD BE YOUR TOP PRIORITY
d....@gmail.com <d....@gmail.com> #1219
de...@gmail.com <de...@gmail.com> #1220
ga...@gmail.com <ga...@gmail.com> #1221
HTC Desire, Froyo, T-Mobile UK.
Seems to happen once every 100-150 text messages I send.
[Deleted User] <[Deleted User]> #1222
ga...@gmail.com <ga...@gmail.com> #1223
I have had the problem for months now but just assumed it would be fixed. Also because I don't send anything incriminating or offensive to certain people in my contacts list therefore has not affected me as much, although a fix for the problem would be useful nonetheless.
mi...@gmail.com <mi...@gmail.com> #1224
cs...@gmail.com <cs...@gmail.com> #1225
gi...@gmail.com <gi...@gmail.com> #1226
ba...@gmail.com <ba...@gmail.com> #1227
ex...@sympatico.ca <ex...@sympatico.ca> #1228
I have had this issue at least 10 times in the three months that I've owned a Samsung Galaxy S with Bell Mobility, everything standard OOB.
I don't know how to provide diagnostics, I'm a router jockey myself.
py...@gmail.com <py...@gmail.com> #1229
This is absolutely the worst bug of this android phone.
I have an htc evolution 4g.
This bug makes me feel ashamed to own an android phone. Fix this immediately.
me...@gmail.com <me...@gmail.com> #1230
no...@gmail.com <no...@gmail.com> #1231
[Deleted User] <[Deleted User]> #1232
od...@gmail.com <od...@gmail.com> #1233
ch...@frontiernet.net <ch...@frontiernet.net> #1234
po...@gmail.com <po...@gmail.com> #1235
yw...@gmail.com <yw...@gmail.com> #1236
ya...@gmail.com <ya...@gmail.com> #1237
ja...@gmail.com <ja...@gmail.com> #1238
fr...@gmail.com <fr...@gmail.com> #1239
ke...@gmail.com <ke...@gmail.com> #1240
li...@gmail.com <li...@gmail.com> #1241
Thanks.
wu...@gmail.com <wu...@gmail.com> #1242
di...@gmail.com <di...@gmail.com> #1243
di...@gmail.com <di...@gmail.com> #1244
hu...@gmail.com <hu...@gmail.com> #1245
vf...@gmail.com <vf...@gmail.com> #1246
je...@gmail.com <je...@gmail.com> #1247
yx...@gmail.com <yx...@gmail.com> #1248
ew...@gmail.com <ew...@gmail.com> #1249
ew...@gmail.com <ew...@gmail.com> #1250
hk...@gmail.com <hk...@gmail.com> #1251
jn...@gmail.com <jn...@gmail.com> #1252
pe...@gmail.com <pe...@gmail.com> #1253
[Deleted User] <[Deleted User]> #1254
jo...@gmail.com <jo...@gmail.com> #1255
[Deleted User] <[Deleted User]> #1256
su...@gmx.co.uk <su...@gmx.co.uk> #1257
****************************************************************************************************************
&&&&&&&&&&&&&&~~~~~~~~~~~~~~
Why did you guys, experiencing so awful difficulties with messaging and feeling 'embarassment' were waiting until December 31, 2010 and did not write here when this thread was created on June 28, if you are talking about problems 'FROM DAY 1'!? Or you didn't know until December 31, 2010 where to write 'PLZ FIX IT' every 15 minutes?
And now all of you instead to post printscreens (you can't becuse you are not Android users), some proofs (you can't because you're tech-trolls) and trying to describe a problem (you can't because you have no time for this, a lot of trolling work)...WRITE absolutely identical messages from bot-accaunts.
Google definitely should carefully investigate this story and change this place.
All who read this thread must realize that somebody decided to create a shitstorm for Android, now these folks write as Gremlins their 'claims' with clear somebody's order to name here ALL ANDROID devices trying to force people to realize that the bug has affected ALL ANDROID phones of all versions, not only BrandA ModelA. It's interesting too how, by the way, those of TROLLS who try to explain, are explaining 'the bug' so DIFFERENT trying to create a 'wild fear' that Android doesn't work at all and is totally broken. Garbage, trash, fragmented- what these TROLLS write on tech websites. And on December 31 they REINVENTED old thread to prove their internet trolling and ugly terms they use around the web.
There is no bug, don't lie, ugly TROLLS.
What proves that you lie? The next:
1) thread was created on June 28 and even was in search results 1 or 2 times for me or even on one tech website, but it is 6 MONTHS AGO, no EFFECT was then and during this period! FOLKS! 6MONTHS you keep your silence waiting? and now are yelling like sheeps?
2) all complaints appeared in OLD THREAD simultaneously on December 31, but you say that it was for a long time;
3) you name your devices every time without any detailes, the name of Device alone says nothing for bug fixing; this is ordered by your owner, TROLLS, to name all Android devices here to demonstrate the scale of your 'problem'; this addresses your claims to usual consumers, buyers, not to developers; you just need an attention of consumers, which buy devices, not developers who should find your INVENTED bug in REINVENTED thread;
4) you post here almost identical useless 3-4 words messages. DO YOU KNOW THAT THIS IS a developer's forum? detailes? logs? screens? descriptions? or you don't have a good another place from where you could scream?
5) you use the same words in all 3 places where shitstorm should been created to make a feeling that these words are so obvious, but they are written down in your file on computer.
6) bugs are usually a result of updating or installing or some intrusions, you don't connect your complaints with any of your actions with Android OS or OS's changes on your devices.
7) nobody here don't try to really find a solution for 'his problem', because you just need a SHITSTORM, yelling, scandal; it says a lot about true your goals here;
8) those 2 resources from whose you came here are perfect for starting shitstorms. theey are big and different to target different users- one is more glamorous and another one is more geeky;
9) you use term 'switch' and competitor's phones. Folks who experience a problem will not start their messages from the words 'I think about breaking my contract' or 'I'm switching'. You talk to customers/ buyers, saying this, NOT DEVELOPERS;
10) the idea for shitstorm was found excellent, must agree: SMS is a basic feature as dropped calls during an important call, everyone sends millions of messages every day, half of them are so sexual and zesty that will cause firing and misunderstanding everywhere, even EMBARASSMENT!;
11) old retired idea about Google's privacy concerns is a very good sauce for such stories;
12) a slap into the face of openness- 'Look, Google, what we can do with your openness and your Open Handset Alliance!';
13) exactly before CES 2011;
14) tremendous growth of Android that needs shitstorm to be able to compete better and to shine brighter;
15) just to create a proof for the words that you repeat on the internet as zombies about Android.
16) this thread was old,but once established and almost forgotten due to its uselessness, it just needed reinvention on December 31; this fact gave to this thread so bad-needed maturity to show that nothing is fixed from the 1st report; which also help push the theme 'Google doesn't care'.
17) if this bug was existing you wouldn't act as you act now
STOP TROLLING.
Google, this place doesn't look like it should look, clean it and moderate or filter, or preserve such sensitive place from ugly useless trolling.
This thread is dedicated to TROLLING AT ITS BEST. Real Android users, just look at all these comments and don't be afraid. THERE IS NO BUG. It's a SHITSTORM attempt.
I don't know why i have written so much. Probably, because i love this #A4C639-colored Robot and understand how much of useful work Google does for us. For FREE. It can try. It can fail. It can be #3 and #1 giving respect to others and not trying to kill or slam competitors to succeed. It's so alive.;)
at...@gmail.com <at...@gmail.com> #1258
Extra info that may help...
1 - If it mis-sends, it only ever sends to people I already have pre-existing threads in my message app - the bug never seems to create new threads.
2 - The problem seems to be a both mix of using the notification bar new message link or just clicking into a thread - by replying to messages, going out of the message app, then back in it shows the message in a different thread.
3 - Sometimes I've messaged people to apologise for the incorrect text message and they claimed they never received it - again, embarrassment factor.
4 - Bug occurs whether I leave the maximum thread count unlimited in settings, or restrict it to about 50 messages per thread (which I recently did in the hope it was a memory handling problem - didn't seem to help this particular bug, although message app lag disappeared as I was getting multiple threads with very large message counts).
I don't understand the point in people claiming this isn't a real bug. I get some people may not experience it, doesn't mean it's a "fake bug", and any developer (or forum troll) who claims there isn't a bug just because it's hard to reproduce is an idiot (I'm a developer)
Incidentally my wife doesn't think she has experienced this bug - we had 2 non-branded hero's bought at the same time - both kept up to date (I was doing them both at the same time until recently air-updates were introduced). Only major difference between us is I tend to get/send 30-40 texts a day, where she averages about 5, so it may be a timing/db management bug - that said, I've never looked into the android code so I've really no idea - just guessing based on behaviour.
Anyway - if any of the googlers need more info on my phone setup (or a system dump) let me know - quickly though the software info is below, and I'm using stock message app, with no other sms apps installed/used.
Software information:
HTC Desire
Android version: 2.2
Baseband version: 32.49.00.32U_5.11.05.27
Kernel version: 2.6.32.15-gf5a401c htc-kernel@and18-2 #1
Build number: 2.29.405.5 CL293415 release keys
Software number: 2.29.405.5
ra...@gmail.com <ra...@gmail.com> #1259
ht...@gmail.com <ht...@gmail.com> #1260
me...@gmail.com <me...@gmail.com> #1261
ge...@gmail.com <ge...@gmail.com> #1262
lu...@gmail.com <lu...@gmail.com> #1263
su...@gmx.co.uk <su...@gmx.co.uk> #1264
you try to invent a sophisticated smartbug, which appears suddenly on absolutely different devices form different manufacturers and which causes after infinite problems. What causes its start for every of you 'from DAY 1'? What caused its start on December 31? It can't appear suddenly, some actions are needed. Nothing simultaneous did happen on December 31, 2010 with all the phones you try to carefully name here with all versions you 'use', folks. Why didn't you write here earlier?
I'm sure for 200% that you lie.
Oh, I see repeating comments again and again 'FIX THIS ASAP' from the same persons.
r;;,,;; : ., ., ri; r;;,,;; : : .,:;;: :,;;;;: , ,:;;. : :sr.
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
STOP TROLLING.
ha...@gmail.com <ha...@gmail.com> #1265
su...@gmx.co.uk <su...@gmx.co.uk> #1266
OMG, STOP TROLLING.
ti...@gmail.com <ti...@gmail.com> #1267
xi...@gmail.com <xi...@gmail.com> #1268
sb...@gmail.com <sb...@gmail.com> #1269
gh...@gmail.com <gh...@gmail.com> #1270
Typically, I retain hundreds of messages mostly as a result of being too lazy to delete them on a regular basis.
I will click on a thread or message to respond to a friend, and after completing the message notice that the recipient is not the same person that I initially chose. So, I copy and paste the meat of the message into the proper thread or response.
After I send the response, I go in and delete all of the threads or message in my SMS application and the issue does not pop up again until the number of stored messages becomes huge.
I have not tried a third party messaging application to see if the issue affects that application also.
td...@gmail.com <td...@gmail.com> #1271
td...@gmail.com <td...@gmail.com> #1272
an...@uglybugger.org <an...@uglybugger.org> #1273
ja...@gmail.com <ja...@gmail.com> #1274
sent message to friend a but friend b reply to me why i sent the message to him!
its not a good sign to see this problem happened again!
br...@gmail.com <br...@gmail.com> #1275
ma...@gmail.com <ma...@gmail.com> #1276
Handset: HTC EVO 4G
Android Version: 2.2
Baseband version: 2.15.00.11.19
Kernel version: 2.6.32.17-gee557fd htc-kernel@and18-2 #15
Build number: 3.70.651.1
Thanks for looking into the bug! I, nor anyone else I'm close to are being affected by this issue materially. Unlike other responders who are apparently either dying or are in considerable danger because of this problem.
:)
ja...@gmail.com <ja...@gmail.com> #1277
fe...@gmail.com <fe...@gmail.com> #1278
fe...@gmail.com <fe...@gmail.com> #1279
em...@gmail.com <em...@gmail.com> #1280
zh...@gmail.com <zh...@gmail.com> #1281
so...@gmail.com <so...@gmail.com> #1282
co...@gmail.com <co...@gmail.com> #1283
It must be fix asap before I change my mind to iOS
ra...@gmail.com <ra...@gmail.com> #1284
jh...@gmail.com <jh...@gmail.com> #1285
wu...@gmail.com <wu...@gmail.com> #1286
om...@gmail.com <om...@gmail.com> #1287
bk...@gmail.com <bk...@gmail.com> #1288
be...@gmail.com <be...@gmail.com> #1289
fi...@gmail.com <fi...@gmail.com> #1290
ca...@gmail.com <ca...@gmail.com> #1291
dt...@gmail.com <dt...@gmail.com> #1292
wc...@gmail.com <wc...@gmail.com> #1293
co...@gmail.com <co...@gmail.com> #1294
se...@gmail.com <se...@gmail.com> #1295
jt...@gmail.com <jt...@gmail.com> #1296
sa...@gmail.com <sa...@gmail.com> #1297
de...@gmail.com <de...@gmail.com> #1298
mi...@gmail.com <mi...@gmail.com> #1299
[Deleted User] <[Deleted User]> #1300
th...@gmail.com <th...@gmail.com> #1301
da...@gmail.com <da...@gmail.com> #1302
I'm not aware of the issue happening on my phone. However it is possible it happened without me knowing.
te...@gmail.com <te...@gmail.com> #1303
mo...@gmail.com <mo...@gmail.com> #1304
Especially when sending to multiple receipts, it is really difficult to duble-check before sending!!
I am really Enjoy Android BUT the deadline is foreseeable already!!
HTC Legend Android 2.2
de...@gmail.com <de...@gmail.com> #1305
ru...@gmail.com <ru...@gmail.com> #1306
ho...@gmail.com <ho...@gmail.com> #1307
fix it plz !!!!!!!!!!!!!!!!!!!!!!!!
lu...@gmail.com <lu...@gmail.com> #1308
he...@gmail.com <he...@gmail.com> #1309
sj...@gmail.com <sj...@gmail.com> #1310
ch...@gmail.com <ch...@gmail.com> #1311
jo...@gmail.com <jo...@gmail.com> #1312
co...@gmail.com <co...@gmail.com> #1313
rd...@gmail.com <rd...@gmail.com> #1314
It is a shame that Google didn't pay the real ammount of attention to it... Fix this damn problem NOW !!!!
sw...@gmail.com <sw...@gmail.com> #1315
di...@gmail.com <di...@gmail.com> #1316
ne...@gmail.com <ne...@gmail.com> #1317
ma...@gmail.com <ma...@gmail.com> #1318
ku...@gmail.com <ku...@gmail.com> #1319
ya...@gmail.com <ya...@gmail.com> #1320
So if I were to write there, I'd send an sms to the wrong person.
te...@gmail.com <te...@gmail.com> #1321
that's a real problem on a cell phone.
ph...@gmail.com <ph...@gmail.com> #1322
ki...@gmail.com <ki...@gmail.com> #1323
wi...@gmail.com <wi...@gmail.com> #1324
na...@gmail.com <na...@gmail.com> #1325
ka...@kaos.idv.tw <ka...@kaos.idv.tw> #1326
jl...@gmail.com <jl...@gmail.com> #1327
ma...@gmail.com <ma...@gmail.com> #1328
k2...@gmail.com <k2...@gmail.com> #1329
k2...@gmail.com <k2...@gmail.com> #1330
ro...@gmail.com <ro...@gmail.com> #1331
gu...@gmail.com <gu...@gmail.com> #1332
il...@gmail.com <il...@gmail.com> #1333
la...@gmail.com <la...@gmail.com> #1334
do...@gmail.com <do...@gmail.com> #1335
my...@gmail.com <my...@gmail.com> #1336
sl...@gmail.com <sl...@gmail.com> #1337
So want to troll the trolls, but that wouldn't be constructive now would it?
Still tho, not convinced, if this were an issue, dev's would be all over it like flys on SH*T the very first time they experience it. There would be extensive threads all through the webs android dev forums and they would go back more then a few months, not all appear at once.
If your not a troll, then please refrain from the "Fix it please" chorus of static noise and don't believe the hype.
[Deleted User] <[Deleted User]> #1338
kr...@gmail.com <kr...@gmail.com> #1339
bh...@gmail.com <bh...@gmail.com> #1340
pi...@gmail.com <pi...@gmail.com> #1341
Have some serious explaining to do to my girlfriend for no reason thanks to this bug!!!
FIX THIS ASAP!!!!!!!!!!!
PRIVACY ISSUES ARE NOT ACCEPTABLE!!!!!!
na...@gmail.com <na...@gmail.com> #1342
ca...@gmail.com <ca...@gmail.com> #1343
to...@gmail.com <to...@gmail.com> #1344
ja...@bornhuman.com <ja...@bornhuman.com> #1345
Thanks.
dk...@gmail.com <dk...@gmail.com> #1346
kn...@gmail.com <kn...@gmail.com> #1347
an...@gmail.com <an...@gmail.com> #1348
su...@gmx.co.uk <su...@gmx.co.uk> #1349
r;;,,;; : ., ., ri; r;;,,;; : : .,:;;: :,;;;;: , ,:;;. : :sr.
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
STOP TROLLING.
su...@gmx.co.uk <su...@gmx.co.uk> #1350
****************************************************************************************************************
&&&&&&&&&&&&&&~~~~~~~~~~~~~~
Why did you guys, experiencing so awful difficulties with messaging and feeling 'embarassment' were waiting until December 31, 2010 and did not write here when this thread was created on June 28, if you are talking about problems 'FROM DAY 1'!? Or you didn't know until December 31, 2010 where to write 'PLZ FIX IT' every 15 minutes?
And now all of you instead to post printscreens (you can't becuse you are not Android users), some proofs (you can't because you're tech-trolls) and trying to describe a problem (you can't because you have no time for this, a lot of trolling work)...WRITE absolutely identical messages from bot-accaunts.
Google definitely should carefully investigate this story and change this place.
All who read this thread must realize that somebody decided to create a shitstorm for Android, now these folks write as Gremlins their 'claims' with clear somebody's order to name here ALL ANDROID devices trying to force people to realize that the bug has affected ALL ANDROID phones of all versions, not only BrandA ModelA. It's interesting too how, by the way, those of TROLLS who try to explain, are explaining 'the bug' so DIFFERENT trying to create a 'wild fear' that Android doesn't work at all and is totally broken. Garbage, trash, fragmented- what these TROLLS write on tech websites. And on December 31 they REINVENTED old thread to prove their internet trolling and ugly terms they use around the web.
There is no bug, don't lie, ugly TROLLS.
What proves that you lie? The next:
1) thread was created on June 28 and even was in search results 1 or 2 times for me or even on one tech website, but it is 6 MONTHS AGO, no EFFECT was then and during this period! FOLKS! 6MONTHS you keep your silence waiting? and now are yelling like sheeps?
2) all complaints appeared in OLD THREAD simultaneously on December 31, but you say that it was for a long time;
3) you name your devices every time without any detailes, the name of Device alone says nothing for bug fixing; this is ordered by your owner, TROLLS, to name all Android devices here to demonstrate the scale of your 'problem'; this addresses your claims to usual consumers, buyers, not to developers; you just need an attention of consumers, which buy devices, not developers who should find your INVENTED bug in REINVENTED thread;
4) you post here almost identical useless 3-4 words messages. DO YOU KNOW THAT THIS IS a developer's forum? detailes? logs? screens? descriptions? or you don't have a good another place from where you could scream?
5) you use the same words in all 3 places where shitstorm should been created to make a feeling that these words are so obvious, but they are written down in your file on computer.
6) bugs are usually a result of updating or installing or some intrusions, you don't connect your complaints with any of your actions with Android OS or OS's changes on your devices.
7) nobody here don't try to really find a solution for 'his problem', because you just need a SHITSTORM, yelling, scandal; it says a lot about true your goals here;
8) those 2 resources from whose you came here are perfect for starting shitstorms. theey are big and different to target different users- one is more glamorous and another one is more geeky;
9) you use term 'switch' and competitor's phones. Folks who experience a problem will not start their messages from the words 'I think about breaking my contract' or 'I'm switching'. You talk to customers/ buyers, saying this, NOT DEVELOPERS;
10) the idea for shitstorm was found excellent, must agree: SMS is a basic feature as dropped calls during an important call, everyone sends millions of messages every day, half of them are so sexual and zesty that will cause firing and misunderstanding everywhere, even EMBARASSMENT!;
11) old retired idea about Google's privacy concerns is a very good sauce for such stories;
12) a slap into the face of openness- 'Look, Google, what we can do with your openness and your Open Handset Alliance!';
13) exactly before CES 2011;
14) tremendous growth of Android that needs shitstorm to be able to compete better and to shine brighter;
15) just to create a proof for the words that you repeat on the internet as zombies about Android.
16) this thread was old,but once established and almost forgotten due to its uselessness, it just needed reinvention on December 31; this fact gave to this thread so bad-needed maturity to show that nothing is fixed from the 1st report; which also help push the theme 'Google doesn't care'.
17) if this bug was existing you wouldn't act as you act now
STOP TROLLING.
gu...@gmail.com <gu...@gmail.com> #1351
gu...@gmail.com <gu...@gmail.com> #1352
py...@gmail.com <py...@gmail.com> #1353
Another similar bug - when I send an sms, it sometimes backs out of the thread, and pops into a different thread (always one of my coworkers) and places the message there. it doesn't send to him, but often freaks me out.
kc...@gmail.com <kc...@gmail.com> #1354
See here for repeatable explanation:
And also here:
A quote from the second link:
"Besides the few obvious trolling attempts, you see reports claiming this bug sends SMS messages to people you know, but aren't in your contacts list, or people claiming that the phone number is correct, but the app sent it based on the MEID to the wrong person. Plain and simple -- these types of issues aren't happening, and only cloud the real issue. If you do experience this bug, you need to calmly, and more importantly, truthfully, submit the steps needed to reproduce it."
Please think about it before you right some BS explanation or just whine. This is a bug reporting system, not an "I'm an idiot user and want to whine because a tech blog told me to" system.
For those wondering why it is medium priority...well let's see, millions of android phones...likely billions of text messages sent a day...and 3000 people have starred the issue. That's less than 0.01% of android phones having a problem that only occurs infrequently?
Get some perspective people seriously!"
ge...@gmail.com <ge...@gmail.com> #1355
pe...@gmail.com <pe...@gmail.com> #1356
su...@gmx.co.uk <su...@gmx.co.uk> #1357
THIS REINVENTED THREAD IS AN OBVIOUS TROLLING ATTEMPT. HERE ARE ABOUT 10 OR 20 COMMENTS THAT ARE ABOUT A SINGLE TECHNICAL ERROR/CONFLICT ON A SINGLE ANDROID DEVICE.
99,9% of COMMENTS HERE ARE JUST A SHITSTORM-BOT-ATTACK.
es...@gmail.com <es...@gmail.com> #1358
mo...@gmail.com <mo...@gmail.com> #1359
HTC EVO
Nearly brand new
Sent text to a friend to Twitter (who sent it to my 3,000+ followers)
I installed Handcent as a replacement, haven't had the issue again yet but don't really like their interface and it is slow
I'd LOVE to go back to the real SMS program, but don't know if I can trust it yet
ra...@gmail.com <ra...@gmail.com> #1360
So if my screen has:
1. John
2. Beth
3. Amy
4. Dave
5. Rob
6. Gerry
7. Bob (off screen)
If I click on #2 for Beth it'll actually load the off screen contact Bob. Its unfortunately not easy to reproduce but it does seem to be directly tied to entering the messaging system from the notification menu multiple times and use the back button to get to the message list.
ma...@gmail.com <ma...@gmail.com> #1361
you do not want to be Apple, we piss on them.
ja...@gmail.com <ja...@gmail.com> #1362
I am ready to go back to my BB now that I am aware of this.
ch...@gmail.com <ch...@gmail.com> #1363
[Deleted User] <[Deleted User]> #1364
ma...@gmail.com <ma...@gmail.com> #1365
jo...@gmail.com <jo...@gmail.com> #1366
sunnylama@gmx.co.uk
sunnylama@gmx.co.uk
sunnylama@gmx.co.uk
sunnylama@gmx.co.uk
This is a real bug. Please shut the hell up. You are extremely annoying.
da...@gmail.com <da...@gmail.com> #1367
Hope you sort this soon Google!
[Deleted User] <[Deleted User]> #1368
me...@gmail.com <me...@gmail.com> #1369
av...@gmail.com <av...@gmail.com> #1370
je...@gmail.com <je...@gmail.com> #1371
1. I have sent messages to friends that are in my contacts or someone that I sent a message to previously, and the message will go to someone else. I checked the message and it will display under the correct person some times and other times it will show up as a message string to the wrong person. The first couple times I just assumed that I made a mistake, but the last couple of times, I was paying attention.
th...@gmail.com <th...@gmail.com> #1372
myTouch 4G. Android 2.2.1,
ma...@gmail.com <ma...@gmail.com> #1373
Version numbers:
Android 2.2
Messages for Android 1.06.0000.294884
Kernel: 2.6.32.17-grr557fd
Build: 3.70.651.1 CL294884
And please people, stop posting angry, non-productive "fix it now" messages.
fu...@gmail.com <fu...@gmail.com> #1374
J’ai également des mélanges entre contacts lorsque je passe par l’onglet “appels” puis “afficher le contact”, le contact qui s’ouvre n’est pas le bon. C'est tres pénible, à quand une correction ??
mr...@gmail.com <mr...@gmail.com> #1375
th...@gmail.com <th...@gmail.com> #1376
The secondary issue of an SMS text going to the wrong participant, though this may or may not have happened it would explain the random "Huh?" or "What?" I sometimes receive from people and the confusion with contacts that sometimes say they never received my message. I originally thought this must be a Verizon network failure or miscommunication but it would appear to be a big. Sorry for the inability to provide more useful information.
The bug occurs randomly and usually far apart enough that I cannot recreate it.
sk...@gmail.com <sk...@gmail.com> #1377
ji...@gmail.com <ji...@gmail.com> #1378
su...@gmx.co.uk <su...@gmx.co.uk> #1379
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
STOP TROLLING.
su...@gmx.co.uk <su...@gmx.co.uk> #1380
STOP TROLLING. WHO IS BEHIND YOUR LIE?
THERE IS NO BUG IN ANDROID.
q1...@gmail.com <q1...@gmail.com> #1381
G 5
@r;XABBAXr:#:
,3@@@@@@@@@@@@h,
#@@r H@@@@@@B :@@@
.@@@@. 2@#MM#@& @@@@.
5@@@Mr h@@@H; @@@@@@@@######@@@@@@@@
:,.. ,,.. ,,., ,,......... r@@@@@@@@9 X@@@@@@@@r X52&M@@@@@@@@@@@#B&h3G
@@@@ r@@@@r ;@@@@ @@@@@@@@@@@ .@@@@@@@@@@@r @@@@@@@@@@@2 sHA; ; .; ,&BS
#@@@r M@@@@M A@@@, @@@@AAHHH#M r@@#MM###@@@@@@@#MMM##@@@@ 3@@@@: @@@@@@@#BBHHHB##@@@@@@, @@@@@
.@@@M @@#@@@ @@@M @@@@ ,@#MMMMMM##@@@#MMMMMMM##@@ H@@@@r @@@@@@@@@@@@@@@@@@@@@@ @@@@@
#@@@ ;@@;3@@: .@#@: #@#@ @@#MMMMMMM#MMMMMMMMMMMM@X 2@##@: @@###################@ @@#@@
;@@@: H@@ r@@A 5@@@ #@#@@@@@@@B @@#MMMMMMMMMMMMMMMMMM@@ 5@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
@@@X @@B @@@ M@@r #@#@hGAAA#s .@@##MMMMMMMMMMMMMMM@@ 5@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
2@@M:@@; @@@:@@@ #@## A@@##MMMMMMMMMMMM@@ 2@##@: @@MMMMMMMMMMMMMMMMMM#@ @@#@@
@@@#@@ X@@##@S #@#@ ,#@@##MMMMMMMMM@# 3@##@; @@MMMMMMMMMMMMMMMMMM#@ @@#@@
#@@@@& .@@@@@ @@@@@@@@@@@; .A@@@##MMMMM@G .@@@@ @@MMMMMMMMMMMMMMMMMM#@ &@@@S
,@##@, #@#@h #@@@@@@@@@@; i@@@@#M#@s @@MMMMMMMMMMMMMMMMMM#@
.2@@@@. @@###MMMM#####MMMM##@@.
,5 #@@@##MMM#@@@@#MMM#@@@
@@M## M@M#@
@@M#@ #@M#@
@@#@@ @@##@
@@@@@ @@@@@.
rSs. rSs.
wi...@gmail.com <wi...@gmail.com> #1382
po...@gmail.com <po...@gmail.com> #1383
sz...@gmail.com <sz...@gmail.com> #1384
ng...@gmail.com <ng...@gmail.com> #1385
da...@gmail.com <da...@gmail.com> #1386
pe...@gmail.com <pe...@gmail.com> #1387
bi...@gmail.com <bi...@gmail.com> #1388
ro...@gmail.com <ro...@gmail.com> #1389
go...@gmail.com <go...@gmail.com> #1390
ma...@gmail.com <ma...@gmail.com> #1391
de...@gmail.com <de...@gmail.com> #1392
ro...@gmail.com <ro...@gmail.com> #1393
as...@gmail.com <as...@gmail.com> #1394
sm...@gmail.com <sm...@gmail.com> #1395
yx...@gmail.com <yx...@gmail.com> #1396
li...@gmail.com <li...@gmail.com> #1397
ri...@gmail.com <ri...@gmail.com> #1398
m9...@gmail.com <m9...@gmail.com> #1399
ma...@gmail.com <ma...@gmail.com> #1400
fw...@wqfw.de <fw...@wqfw.de> #1401
:(((
ri...@gmail.com <ri...@gmail.com> #1403
sa...@gmail.com <sa...@gmail.com> #1404
This happens probably 5/10 times that I try to send an SMS. It's very annoying. Please fix it.
ho...@gmail.com <ho...@gmail.com> #1405
pa...@gmail.com <pa...@gmail.com> #1406
bk...@gmail.com <bk...@gmail.com> #1407
al...@gmail.com <al...@gmail.com> #1408
Often Sms where sent to random people of mt address book instead of the person i've chosen.
It has to be fixed i suppose
ar...@gmail.com <ar...@gmail.com> #1409
Luckily, this is only affecting messages that come from my bank, credit card or other junk spammers; people that I don't respond to :-).
ma...@gmail.com <ma...@gmail.com> #1410
[Deleted User] <[Deleted User]> #1411
fa...@gmail.com <fa...@gmail.com> #1412
ka...@gmail.com <ka...@gmail.com> #1413
cd...@gmail.com <cd...@gmail.com> #1414
ew...@googlemail.com <ew...@googlemail.com> #1415
I'm a Palm Pre user (webOS 1.4.5).
Interestingly enough, I have experienced a similar problem with my Palm Pre. For example, my father sent me an sms (in English) and his sms was then "mangled" and displayed (to me) as an sms from a friend. The resulting sms was a weird mix of german and english and thus, the "error" was extremely noticeable.
To my knowledge WebOS, like Android, also uses an SQlite DB (If somebody could confirm that, that would be cool). If both OSs use SQlite, the problem is likely to be there given that SQlite is known to be a big pile of crap (for example, this is a classic:
Rgs
Phil.
jo...@gmail.com <jo...@gmail.com> #1416
Android, however gets some slack - for now.
ad...@gmail.com <ad...@gmail.com> #1417
pc...@gmail.com <pc...@gmail.com> #1418
ne...@gmail.com <ne...@gmail.com> #1419
tr...@gmail.com <tr...@gmail.com> #1420
el...@gmail.com <el...@gmail.com> #1421
This is a very common occurence on my phone.
Samsung Galaxy S "Showcase" on Cellular South Network...
mh...@gmail.com <mh...@gmail.com> #1422
im wondering how many went out without me knowing???????
thanks
hy...@gmail.com <hy...@gmail.com> #1423
fr...@gmail.com <fr...@gmail.com> #1424
Symptoms: when selecting a thread from the list of messages in the SMS application, I can wind up on a different thread entirely. Repeating usually produces the same (incorrect) results, at least a few times. If If I click and hold on the thread and select "view" from the dropdown, it usually (though not always) takes me to the correct thread. Deleting the incorrect thread once worked, once caused the SMS app to crash, and once caused the phone to lock up entirely (had to pull the battery).
Problem seems to be getting rapidly more frequent.
Note, I have a rather large SMSMMS database, with several threads having in excess of 1000 messages. Performance is awful, but I figure that's my fault for not purging old messages.
If it would be of assistance to anyone I can provide a sanitized dump of my SMSMMS.db and any associated cache files.
ew...@googlemail.com <ew...@googlemail.com> #1425
webOS 1.4.5 user here again. Assuming the issue is a SQlite issue, the latest Android code we have is using SQLite 3.6.22 (already 1year old), webOS 1.4.5 uses 3.6.20 and I found an iPhone user reporting SMS related issues:
Note: The iPhone is also using SQlite.
Any comments?
Phil.
fr...@gmail.com <fr...@gmail.com> #1426
jc...@gmail.com <jc...@gmail.com> #1427
jc...@gmail.com <jc...@gmail.com> #1428
A = The intended contact.
N = Random number of other contacts or phone numbers.
Randomly, when a text message is sent to A, A and N receive the same text message.
The problem doesn't happen every single time, but a lot of the time, say 75%. But the problem only occurs when sending a text message to A.
j....@gmail.com <j....@gmail.com> #1429
ch...@gmail.com <ch...@gmail.com> #1430
and my Android-friends didn't experience ANY messaging/other problems: DroidX (3), Droid(2), Incredible, HTC Desire (3), HTC EVO (3), G2. My sister's Samsung Galaxy S works smoothly and reliably too.
Haha, but Taylor sent once, being drunk), a message to our mom instead of her bf :DD LOLZZZ Mum has never before (and after) read such messages)ahahahaha
le...@gmail.com <le...@gmail.com> #1431
1. I will tap on one person in messaging and it'll bring up a different person. If I'm not excessively careful, I will send messages to the wrong person. Most of the time, the thread it brings up is not the next person on my list (such as would occur if I simply mis-tapped), but someone not even on the same page.
2. When I click on a newly received message from the notification bar, I am occasionally taken to a different thread and I have to back out and start again to find the correct message.
These issues started out only occasionally, but they are starting to occur more and more. PLEASE FIX THIS MESSAGING ISSUE.
de...@gmail.com <de...@gmail.com> #1432
di...@gmail.com <di...@gmail.com> #1433
Here's his post again (
Hi all,
I want to let everyone know that we are actively investigating this issue, and we hope to have an update soon. Obviously, this is a very difficult to reproduce bug.
Rather than replying "me too", you can star this issue to follow it. Just saying "me too" just obscures the useful information in this bug, and makes it harder to fix. Of course, if you have useful information to add to the bug, such as a system dump or an insightful analysis of the code, feel free to update the bug with your observations.
ja...@googlemail.com <ja...@googlemail.com> #1434
li...@gmail.com <li...@gmail.com> #1435
Pleare treat this issue with the upmost critically.
tt...@gmail.com <tt...@gmail.com> #1436
[Deleted User] <[Deleted User]> #1437
[Deleted User] <[Deleted User]> #1438
mf...@gmail.com <mf...@gmail.com> #1439
st...@gmail.com <st...@gmail.com> #1440
su...@gmx.co.uk <su...@gmx.co.uk> #1441
This! >>> #1438- that's what they all here want. The true core of their lie. Folks, you lie. You are just UGLY TROLLS. UGLY prepaid trolls.
THIS THREAD WAS CREATED on June 28, 2010. But you instantly started yelling here on December 31, 2010, claiming about 'long time', 'from the beginning' and 'all the time'.
What else proves that you lie? You, masking yourself as 'users', instead of to try to find a solution for non-existing bug, act like clear and badly-masked shitstorm-makers (actually who you are), only trying to DESCRIBE a scale of this 'problem' for those who'll read this, using potential, possible and 'already happened' situations and disasters, include business and private, friends and parents, pets and UFOs, girls and boys, gay and straight, embarassment and harassment, spicing up the HORROR with 'firing', 'breaking up' and 'misanderstanding', also only describe what 'can happen' for other people. Then every 40-50 'FIX IT PLZ ! ! !' YOU add the logical conclusion to clear for visitors the goal: 'I'm switching', 'This is a deal-breaker' and 'I'm leaving', 'I'd like to buy....I'll wait'
If you had a problem, you would be focused only on dry and fast, clear TECHNICAL description of your error. What did you do and what happend. Adding ONLY TECHNICAL INFO. Without repeating messages form the same persons.
Be honest with yourself:
r;;,,;; : ., ., ri; r;;,,;; : : .,:;;: :,;;;;: , ,:;;. : :sr.
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
This bug doesn't exist. STOP TROLLING.
Also, it's simpler technically to rate this 'trollthread' lifting up it, than to comment on such an awful 'problem', yeah?
1440 repeating comments, 6831 stars. Or is it just a limited troll-pack for this shit-event?
STOP TROLLING.
su...@gmx.co.uk <su...@gmx.co.uk> #1442
YOU ARE TROLLS AND LIE. DOUBTLESSLY. BECAUSE IF YOU WERE SO SIMPLY AND ALL THE TIME EXPERIENCING A PROBLEM, YOU'D BE ABLE NOT ONLY CLEARLY AND TECHNICALLY TO DESCRIBE WHAT'S HAPPENING, BUT TO RECORD A VIDEO OF THIS.!
STOP TROLLING.
no...@gmail.com <no...@gmail.com> #1443
I have however, noticed something similar with the "Favorites" widget where basically you can press one person and get another if you don't wait for a second for it to do a sort and it's under any sort of load.
However, yeah, everyone and their dog claiming to have the issue since Dec 31 yet from day 1 is BS.
I saw this thread because my iPhone friends were gloating over "so, this is what 'open source' gets?". This from an iPhone friend who was about a day without his phone due to a corrupted closed-source software update,the same update that took out 2 other of my iPhone friends forcing them to go to the apple store.
Wife has an evo, I have an evo, friends have the Samsung Galaxy, Hero, Droid X, some other type. OSes from the 1.x's to 2.2, from stock to rooted, and I have never had a misdirected text that was not the result of alcohol.
Not saying the issue is a complete fabrication, but I believe there be an assload of false outrage, duplicate reports, and otherwise anti-android postings
my...@gmail.com <my...@gmail.com> #1444
ca...@gmail.com <ca...@gmail.com> #1445
ke...@gmail.com <ke...@gmail.com> #1446
zz...@gmail.com <zz...@gmail.com> #1447
sm...@gmail.com <sm...@gmail.com> #1448
fe...@gmail.com <fe...@gmail.com> #1449
I have since noticed it do this 'renaming' thing mentioned above again, but to my knowledge it has not resulted in a wrong msg being sent as I've made a point of avoiding it. So I think the likehood is, it could easily happen again as the problem is still there. We really need this fixed urgently before the iphone users get wind of this!!!
ml...@gmail.com <ml...@gmail.com> #1450
al...@gmail.com <al...@gmail.com> #1451
ni...@gmail.com <ni...@gmail.com> #1452
om...@gmail.com <om...@gmail.com> #1453
re...@googlemail.com <re...@googlemail.com> #1454
mo...@gmail.com <mo...@gmail.com> #1455
jo...@gmail.com <jo...@gmail.com> #1456
le...@gmail.com <le...@gmail.com> #1457
da...@gmail.com <da...@gmail.com> #1458
bd...@gmail.com <bd...@gmail.com> #1459
Alice
Bob
Carol
Eve
Trudy
Oscar
If I tap "Messaging" from my home screen I noticed that it takes a second or two for all of the numbers to become fully translated/populated with names. If this process has not yet finished and I tap on a name such as Bob, then some small percent of the time the phone may actually pull up the tread for one of the other contacts. If I wait for things to fully populate (an extra second or two) prior to tapping the contact then it seems to always work fine.
I know that my messages are showing up under the correct threads. For example, if I open it up and then immediately tap Bob, the phone may either bring up Bob's conversation thread (correct behavior) or it may bring up any other user's thread, let's say Eve's (incorrect behavior). If I type a message and send it, the message will go to Eve and show up under Eve's thread. Thus, I have learned to do the following two things before sending a message:
1. wait that extra split second before tapping a name from the list
2. take the extra split second to verify the name in the thread before I start typing and then ultimately send
Waiting that extra split second for things to populate seems to make all of the difference. I haven't had this problem since I started doing that (meaning step 2 above is essentially unnecessary, but I do it anyway).
nn...@google.com <nn...@google.com> #1460
When some users tap to open a message in the Messaging application, they're seeing a different message appear instead. We don't believe this issue is affecting many users, but we've developed a fix that we're preparing to deploy. Of course, double-checking the displayed message before hitting "Send" will prevent any messages from being sent to the wrong recipients. We've found in testing this issue, it is more likely to occur if you tap on a message before the Messaging app is fully loaded, so we recommend waiting for all the elements to load before clicking on the message you want to display.
Separately, some users have reported that their SMS messages are being delivered to the wrong people. It took us some time to reproduce this issue, as it appears that it's only occurring very rarely. Even so, we've now managed to both reproduce it and develop a fix that we will deploy.
While we don't anticipate any persistent problems, we'll continue to investigate in case we come up with additional ways to trigger these bugs. Thanks again for helping us improve Android.
cr...@gmail.com <cr...@gmail.com> #1461
mi...@gmail.com <mi...@gmail.com> #1462
Special dedication to sunnyl...@gmx.co.uk who's been the real troll here ;)
at...@gmail.com <at...@gmail.com> #1463
*looks forward his final thoughts on the subject*
gu...@gmail.com <gu...@gmail.com> #1464
excelent job!!!
so...@gmail.com <so...@gmail.com> #1465
kn...@gmail.com <kn...@gmail.com> #1466
tl...@gmail.com <tl...@gmail.com> #1467
Not sure if other people reported that particular use case but it happens to me a lot.
I'm on an AT&T 3G Nexus One using Cyanogenmod 6.1 (which is Froyo based).
Thanks for finally dealing with this one! I know it blew up lately, but it has been a pretty annoying bug for me. Luckily I've usually caught it when the wrong thread comes up (which I've head to learn to check).
-Taylor
sn...@gmail.com <sn...@gmail.com> #1468
CONFIDENTIALITY NOTICE: This email and any files transmitted with it are
confidential and intended solely for the use of the individual or entity to
whom they are addressed. If you have received this email in error please
notify the system manager. This message contains confidential information
and is intended only for the individual named. If you are not the named
addressee you should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately by e-mail if you have received this e-mail by
mistake and delete this e-mail from your system. If you are not the intended
recipient you are notified that disclosing, copying, distributing or taking
any action in reliance on the contents of this information is strictly
prohibited.
py...@gmail.com <py...@gmail.com> #1469
Google emailed me saying there's a fix and its coming. Well you know what? Google owes the community this fix right now this very second. Overtime all the employees working on this and releasw it to all android handsets. This is pathetic. Oh and I must say it happens on any third partyparty mms app and the stock messaging app. Serious bug fix it now.
fd...@gmail.com <fd...@gmail.com> #1470
es...@gmail.com <es...@gmail.com> #1471
ba...@gmail.com <ba...@gmail.com> #1472
"Usually, the message is sent to the correct recipient, but shown in the wrong thread."
This has been reported by numerous comments in this thread.
er...@gmail.com <er...@gmail.com> #1473
Repeating probable issue:"Usually, the message is sent to the correct recipient, but shown in the wrong thread."
an...@gmail.com <an...@gmail.com> #1474
re...@gmail.com <re...@gmail.com> #1475
fu...@gmail.com <fu...@gmail.com> #1476
sent to the right n�, when I look into the details. If it could help...
The contact bug still remain.
ml...@gmail.com <ml...@gmail.com> #1477
jc...@gmail.com <jc...@gmail.com> #1478
Sent from my awesome DroidX
sent
of
they're
ha...@gmail.com <ha...@gmail.com> #1479
I concur with this observation. I change ROMs on my EVO 4G three times a week, have over 5 different versions of modified and stock Sense UI and AOSP. It is *very very* rare to have this bug, but in all my life (I've been an Android user since the G1) I've only seen this problem ONCE. JUST ONCE. Tried to reproduce the problem with three G2, an Epic 4G, a Captivate, a BackFlip, an i9000, and even an Xperia Mini. No. Dice. I couldn't reproduce the problem with my friends. Not even with two G2s that belong to overtexting, BlackBerry-converted-to-Android users. All the text messages appeared normal and functional.
Even if the problem is rare, it's not an excuse to fix it. The Messaging App Fix should be distributed via Android Market as a Library App, while newer versions of Android should have it pre-installed. This guarantees the distribution to all users in the Android ecosystem. I hope that this fix distribution strategy is the best in the developer's eyes; although there are other methods of upgrading an app, this plan is the most dynamic I believe.
ma...@wanners.net <ma...@wanners.net> #1480
Which is just great. But as a developer, I'd like to know how this will be rolled out. What are your plans as far as the actual application of the fixes? The only way this will make it anywhere in the next 6 months is if it's dubbed "security"...
But to be honest, it IS a security issue. What if, God forbid, someone was dumb enough to send the password for an important computer system to another person in an SMS? And it goes to, say, someone they were in contact with at some point who might possibly want to gain access to that system for perhaps less than legitimate reasons?
By the way, I'm a bit sad it took an actual slashdot story to get this fixed. It shouldn't take a public outcry to get a security problem fixed.
pa...@gmail.com <pa...@gmail.com> #1481
ak...@gmail.com <ak...@gmail.com> #1482
[Deleted User] <[Deleted User]> #1483
ga...@gmail.com <ga...@gmail.com> #1484
di...@gmail.com <di...@gmail.com> #1485
I wonder how long will it take for the Extra GUI'd Androids to get this update (eg. Sense and TouchWiz) but at least my Oxygen (Custom ROM) will very likely get it the first day it's released :).
ro...@gmail.com <ro...@gmail.com> #1486
Handset: HTC Desire Z
Android Version: 2.2.1
Baseband version: 12.28e.60.140fu_26.04.02.17_M2
Kernel version: 2.6.32.21-g540967a htc-kernel@and18-2 #1
Build number: 1.72.405.2
yu...@gmail.com <yu...@gmail.com> #1487
co...@gmail.com <co...@gmail.com> #1488
wh...@gmail.com <wh...@gmail.com> #1489
I am very curious to know when the second bug exactly occurs. If you have been able to reproduce this problem and fix it, could you please provide information on how to reproduce it. If we know how to reproduce the problem, we can also prevent it from happening.
du...@gmail.com <du...@gmail.com> #1490
je...@gmail.com <je...@gmail.com> #1491
Martes día 4 de enero: recibo SPAM vía SMS de la campaña de Antena 3 televisión (España) del programa RICO.
Si se contesta este mensaje (1,42€ más IVA) se participa en un sorteo asociado a dicho programa de televisión.
Tras leerlo, elimino el mensaje de mi aplicación de mensajería.
Este mismo día, unas horas después recibo un mensaje de una persona a la que previamente había escrito, aunque me contesta
desde un número que no tengo en la agenda.
Miércoles día 5 de enero: necesito ponerme de nuevo en contacto con la persona a la que envié ayer el SMS, pero en esta ocasión
decido contestarle al número que no tengo en la agenda. En la aplicación de SMS de Android accedí al mensaje que recibí
de dicho número y escribí mi mensaje. Justo al pulsar el botón Enviar me percaté que en la parte superior aparecía el número 25354
y no el teléfono al que realmente estaba contestando el mensaje.
En resumen, al contestar un mensaje ya existente en mi teléfono, agrupado en forma de conversación, dicho mensaje se envió a otro
número completamente distinto. Esto es, al número de tarificación adicional que recibí en el mensaje del día anterior.
Les cuento esto para comentarles que la broma me ha costado como poco 1,42€ (puede que sea más siempre y cuando no me hayan
dado de alta en ningún servicio de suscripción) y para comunicarles que me gustaría realizarles
la reclamación pertinente, a ustedes como fabricantes del teléfono o a Google, por desarrollar el sistema operativo Android y todas
sus aplicaciones.
Ya he hablado con Yoigo, mi compañía de telefonía y se han limpiado las manos. Bueno, por lo menos me han bloqueado este tipo
de servicios Premium.
Espero que podamos buscar una solución para este asunto que me tiene indignado y que considero un importante error de software
que nada tiene que ver con el uso que le he dado al teléfono. Un saludo y gracias.
sa...@gmail.com <sa...@gmail.com> #1492
ca...@gmail.com <ca...@gmail.com> #1493
wi...@gmail.com <wi...@gmail.com> #1494
co...@gmail.com <co...@gmail.com> #1495
I have noticed this happens only when you have more than 200 messages in a thread from person "A" and you try to text "A" back by opening that thread.
If I delete a few messages from "A's" thread and bring the message count in the thread to below 200, all works fine.
Hope this helps and hope google fixes it ASAP; though I'm concerned about how long it'll take for Samsung to incorporate the fix and send it across to us users.
n0...@gmail.com <n0...@gmail.com> #1496
only downside: why must some huge bug like this get public/to the press to stop ignoring it?
su...@gmx.co.uk <su...@gmx.co.uk> #1497
To some troll-users who said smth at the end about me:
I'm not interested in you opinion. At all. I still understand your GOAL here.
I just know how some people decided with help of 2 sources: ******** and ******** (+ their twitter and facebook), opennness of this place and ability to STAR without commenting and you, ~1400 REPEATING trolls, to turn an old and extremely RARE error, occuring to 30 people, to the biggest shitstorm-attack for Android.
I exactly know, what I do here. I exactly know, who 99,999% of you are here and on those 2 sources in articles there respectively.So, leave your words for your grand mom.
HERE WE was watching and are watching an example of Uncomparable scale of YELLING and REAL error size. Next time you, trolls, could be on a defending from shitstorm side. Let's play without such UGLY competitive examples.
Google, you really need to do somthing to protect developers' forum from such 'WEIRD and POTENTIALLY HYPE-able' errors/threads hanging here more than some short time without fast and clear changing/closing/resolution/deleting.
Thank you.
Your brave emails with 'HAHAHA!!! This bug exists!!!!! HAHAhajhahHHHAAA' and 'Gogoogoggole ADMITTED THE BUG PUBLICLY!!! HAHAHAHA'prove again my words.
Android users should learn to defend themself from such things. Competitions can be very, very ugly.
You should exactly know, WHY you CHOOSE Android, to have NO doubts when it's doubtless, and to be strong, facing every possible situtation.) Good luck, real users and developers.
I'm watching you, trolls and shitstorm-makers.
your Big Brother.
su...@gmx.co.uk <su...@gmx.co.uk> #1498
pi...@gmail.com <pi...@gmail.com> #1499
he...@gmail.com <he...@gmail.com> #1500
ji...@jimbotech.com <ji...@jimbotech.com> #1501
jh...@gmail.com <jh...@gmail.com> #1502
of...@hotmail.fr <of...@hotmail.fr> #1503
Exactly the same as " d...@rx7.co.nz " . About three times today ...
God pls, fix it !
ns...@gmail.com <ns...@gmail.com> #1504
dj...@gmail.com <dj...@gmail.com> #1505
jo...@gmail.com <jo...@gmail.com> #1506
ma...@gmail.com <ma...@gmail.com> #1507
vi...@gmail.com <vi...@gmail.com> #1508
da...@gmail.com <da...@gmail.com> #1509
Mystery message did not show in my view of thread, only received/viewed by X. Contact X inquired in person, otherwise I would have not have known Mystery SMS was sent. This may have happened more than once, without my knowledge. Both are Android devices.
October message received by Contact X is not saved/archived on my SIM card or in my SMS Drafts. Approx 3 short SMS exchanges with X within a 2 week period, otherwise an infrequent contact.
Original Mystery SMS was a message sent to Contact A, my most frequent contact. Contact A deleted the received/intended Mystery message from her Android device in October.
Up to 10 threads, deleted daily. Apprx 6 locked SMS msgs. Locked messages do not include any instance of the recipient of the Mystery message, nor do they include the Mystery message. All drafts deleted daily. If a thread exceeds 20 messages per day, thread is deleted more often.
Call History also deleted every 1-2 days.
Internet history, cache, cookies cleared weekly.
HARDWARE:
HTC Espresso (MyTouch 3g Slide)
ANDROID OS: (Stock)
Android 2.1 - update 1
Kernel version: 2.6.29-ab809
htc-kernel@and18-2 #1
Build Number: 1.35.53.1 CL216830 Release-Keys
Software Number: 1.35.531.1
Browser Version: WebKit 3.1
APPS:
Messaging, Email, Browser: All stock android. Have not used alternate market apps for any of these services.
All social media apps installed as bloatware on my device are not active, have not logged in, and have never been used. Includes Facebook for MyTouch, Flickr, & Twitter.
te...@gmail.com <te...@gmail.com> #1510
gp...@gmail.com <gp...@gmail.com> #1511
reason I ask is that some* manufactures and then carriers are taking a very long time to deploy any Android updates to users, so the chances of me receiving this or any other patch before I purchase my next phone is very unlikely
*by some I mean all
en...@gmail.com <en...@gmail.com> #1512
I would like to help, but there is no easy way how to debug application and not be attached to PC.
fe...@gmail.com <fe...@gmail.com> #1513
Thanks!
cn...@gmail.com <cn...@gmail.com> #1514
Thanks!
po...@gmail.com <po...@gmail.com> #1515
cl...@gmail.com <cl...@gmail.com> #1516
I would like to add that this is a similar problem in the email reader. When I open my Exchange inbox, I might open a message whilst it is syncing. Thus if I open an email whilst the list is loading, I open the mail and suddenly it shows another mail and not the one I opened. This is not a major issue, as one can easily see that one opened the wrong message. But still it seems to me that the list logic in android have not considered that users can do inputs whilst a list is building up.
tr...@gmail.com <tr...@gmail.com> #1517
an...@googlemail.com <an...@googlemail.com> #1518
But I hate this SonyEricsson X10.. Its the worse piece of rubbish I have EVER bought!
I wish I'd gone for the HTC Desire like my bother and friends did....
I've had this issue on and off for a while, but never really thought about it.
The other thing I noticed a while back is that occasionally my phone would 'forward' a message at random to a few random people in my phone book !!
That did get quite embarrassing!!
I fixed that issue by deleting messages as they came in and read them :0)
py...@gmail.com <py...@gmail.com> #1519
iOS > android just cause of this.
Can't recommend android over any other phones at the moment. Send out the fucking fix.
pl...@gmail.com <pl...@gmail.com> #1520
I for one have experienced this issue ONCE! However it did get me into a bit of bother (I won't go into details) therefore I think this is quite a critical bug - even if this only affects me like 1% of the time.. it is still very serious.
My only reason for posting is because I genuinely believed it was a random one-off problem on my phone (as it never happened on my previous ones) but it is clear it is a much bigger issue.
ra...@gmail.com <ra...@gmail.com> #1521
rh...@gmail.com <rh...@gmail.com> #1522
Does not appear to happen when replying from the message app
rh...@gmail.com <rh...@gmail.com> #1523
me...@gmail.com <me...@gmail.com> #1524
Thank you.
aa...@cssjh.com <aa...@cssjh.com> #1525
nw...@hotmail.com <nw...@hotmail.com> #1526
ma...@gmail.com <ma...@gmail.com> #1527
This has just happened to me today, luckily without any harm - but as discussed above by everyone here - the implications are very serious. By the way 'sunnyl...@gmx.co.uk' I am not a troll you pathetic little twit. How sad. Anyway back to the issue. I sent a message to a friend (1) which appeared on my phone in the thread of friend2 who I didn't intend to txt at all. After asking friend 2 if he had received this message he said he hadn't. Later I checked the message details on the message I sent within the ongoing thread I have with friend 2 - and it stated that I had sent it to friend 1. So the message went to the right place (thankfully) but wasn't added to the correct thread.
I also have a separate but potentially related problem where messages that I have sent, and people have said to me they have received, are given pending status and it looks like the phone is continually trying to send it again! Really weird.
Who do I go to about this, I will copy and paste my problem to the best people to talk to. This is an Android phone, HTC built and on a Virgin Network so who do I speak to first. THIS NEEDS TO BE SORTED. My trust has been dented. For secure messages, at least in the short term, until this is fixed I shall have to use a different method of communication.
So who do we speak to next to get this critical issue resolved?
go...@gmail.com <go...@gmail.com> #1528
re...@drijkoningen.net <re...@drijkoningen.net> #1529
But as a customer what really matters to me is when I gonna have it actually fixed on my phone. Do I understand we will all have to wait for this to be pushed in a new release, then have phone manufacturers and career kick in and decide if and when they'll push a new update to our phone (most of us wouldn't get it)?
Is this distribution model really what we want in 2011? At a time where any of our desktop application can be updated at any moment, where windows does has a windowsupdate on both PC AND phone?
Come on... a critical patch cannot be delayed for weeks or month before it is released just because it has to go tru so many steps, google should be able to make a match available directly to any android phone...
go...@gmail.com <go...@gmail.com> #1530
ru...@gmail.com <ru...@gmail.com> #1531
am...@gmail.com <am...@gmail.com> #1532
Upgrade all systems android NOW!
zo...@gmail.com <zo...@gmail.com> #1533
ia...@gmail.com <ia...@gmail.com> #1534
I am from the Uk, and just want you to know that the bug whereby you open the wrong thread in messaging is present on my 2.2 HTC Desire on Orange.
Read that you were not sure if it was a problem here but it is. I would say it occurs 5 times a day, and although it probably is caused by me clicking before it is loaded as mentioned, it should not be a problem as my other phones have not behaved like this.
Please get the update rolled out soon.
Thanks,
Iain
yi...@gmail.com <yi...@gmail.com> #1535
mz...@gmail.com <mz...@gmail.com> #1536
ri...@gmail.com <ri...@gmail.com> #1537
Can you please describe how the public will be able to identify a device that has had this bug fixed, or if all past devices can in fact be fixed by a download patch?
eg: I would like to buy a new HTC device in AU right now, but the store-stock will be months old and will not include this patch for many months. How will I identify stock that has this bug patched, or is certain to be patchable by a download (and how long till the release of such a patch, and where shall I find it, etc)?
Thanks
Rob
du...@gmail.com <du...@gmail.com> #1538
it may not happen offen but sometimes its hard to fix the relationship
br...@gmail.com <br...@gmail.com> #1539
ol...@gmail.com <ol...@gmail.com> #1540
ja...@gmail.com <ja...@gmail.com> #1541
It's only happened the once, but it happened with three texts consecutively so I look forward to the fix being deployed.
bl...@gmail.com <bl...@gmail.com> #1542
na...@gmail.com <na...@gmail.com> #1543
ca...@gmail.com <ca...@gmail.com> #1544
I'm in Italy and I've got the same problem.
Android 2.2
Mobile Phone: Huawei Ideos U8150
I've reproduced the problem (this may be useful to developers):
1-I receive an SMS from senderA (until now I've no thread related to senderA)
2-I read the message and I've removed it.
3-I receive an SMS from senderB (even after several hours)
4-I read this message and answer to senderB
5-actually the answer to senderB will be sent to senderA !!!
The message sent remains in thread of senderB but if you show the details you will see the number of senderA !!!
I've reproduce this a couple of times with different senders.
uk...@gmail.com <uk...@gmail.com> #1545
Although, most commonly, messages appear to have been sent to the wrong person, more often as to actually having been sent to them.
ro...@gmail.com <ro...@gmail.com> #1546
HTC Desire, Android 2.2
fa...@gmail.com <fa...@gmail.com> #1547
re...@drijkoningen.net <re...@drijkoningen.net> #1548
From a user perspective this bug will be fixed when there will be an update available that can be deployed on it's own device model.
so...@gmail.com <so...@gmail.com> #1549
i....@gmail.com <i....@gmail.com> #1550
HTC Desire Android 2.2
1. Opened message app, tapped on contact field to search for contact.
2. Selects one contact by ticking it in the tick box, screen goes back to message screen.
3. Typed message and send
4. Message thread refreshed to show the intended recipient + an additional recipient (whom wasn't selected).
Needs fixing but why are we texting anyway? just Gmail each other!
jk...@zrun.org <jk...@zrun.org> #1551
Droid 1 Froyo 2.2, stock messaging app, recently all threads cleared.
She receives a text from Person A, and replies in that thread. It shows in the thread as a reply, but actually the text was sent to me. If you open the message details it shows my number, but it is still the the thread generated by Person A's original text.
"Separately, some users have reported that their SMS messages are being delivered to the wrong people. It took us some time to reproduce this issue, as it appears that it's only occurring very rarely. Even so, we've now managed to both reproduce it and develop a fix that we will deploy."
I assume this is the bug. If so, what are the details of the fix and deployment?
Is there any way to download and post the logs from the phone (possibly /data/data/com.android.providers.telephony/databases/mmssms.db or some equivalent of dmesg.log) and would that be helpful?
mm...@gmail.com <mm...@gmail.com> #1552
ne...@gmail.com <ne...@gmail.com> #1553
b....@gmail.com <b....@gmail.com> #1554
ha...@gmail.com <ha...@gmail.com> #1555
da...@gmail.com <da...@gmail.com> #1556
kl...@gmail.com <kl...@gmail.com> #1557
Happened to me more than once, FIX IT!
Happened to me more than once, FIX IT!
Happened to me more than once, FIX IT!
ji...@gmail.com <ji...@gmail.com> #1558
ma...@gmail.com <ma...@gmail.com> #1559
yz...@gmail.com <yz...@gmail.com> #1560
ma...@gmail.com <ma...@gmail.com> #1561
ar...@gmail.com <ar...@gmail.com> #1562
le...@gmail.com <le...@gmail.com> #1563
ne...@gmail.com <ne...@gmail.com> #1564
ca...@gmail.com <ca...@gmail.com> #1565
pe...@gmail.com <pe...@gmail.com> #1566
cy...@gmail.com <cy...@gmail.com> #1567
ni...@gmail.com <ni...@gmail.com> #1568
I use default message app only.
~Quote:
'.....THIS THREAD WAS CREATED on June 28, 2010. But you instantly started yelling here on December 31, 2010, claiming about 'long time', 'from the beginning' and 'all the time'.
What else proves that you lie? You, masking yourself as 'users', instead of to try to find a solution for non-existing bug, act like clear and badly-masked shitstorm-makers (actually who you are), only trying to DESCRIBE a scale of this 'problem' for those who'll read this, using potential, possible and 'already happened' situations and disasters, include business and private, friends and parents, pets and UFOs, girls and boys, gay and straight, embarassment and harassment, spicing up the HORROR with 'firing', 'breaking up' and 'misanderstanding', also only describe what 'can happen' for other people. Then every 40-50 'FIX IT PLZ ! ! !' YOU add the logical conclusion to clear for visitors the goal: 'I'm switching', 'This is a deal-breaker' and 'I'm leaving', 'I'd like to buy....I'll wait'
If you had a problem, you would be focused only on dry and fast, clear TECHNICAL description of your error. What did you do and what happend. Adding ONLY TECHNICAL INFO. Without repeating messages form the same persons.
Be honest with yourself:
r;;,,;; : ., ., ri; r;;,,;; : : .,:;;: :,;;;;: , ,:;;. : :sr.
.@@@@@@@ir@# @@; @@: @@@@@@M .@@@@@@@s,@@ #@5 @@@@@@@@ .@@@@@@@ @@@ @@@@@@@5 i@@ 2@@@@@@
@H r@M @@, @@ @@. sr .@& ,@@ H@r @@ @@ @@ @@2@@ A@: @@, ;@# @@2 :i.
.@H ;@@@@@@@. #@. 9@@@#: .@& .@@@@@@@; H@@@@@A. @@@@@@A ;@9 G@s X@: S@2 :@B ;@@@@X
.@# :@X &@. #@ X @@. ,@B .@B S@; A@ X@A @@ @@@@@@@ 2@: @@: ,@A Xr X@S
,@@ ;@G M@: @@ @@@9B@@ :@@ .@@ X@r #@ ;@@ @@H#@@@ @@: :@@ 9@@@@@@2 :@@ M@@GG@@:
;: ;. .r .r ,2Xs ;, ;, r .; .i, :;siS22 ;: :s ;sSi: ;, s35:
S@@ @@@@@@@@ @@@@@@@, ;@@@@@M @@ @@ @@ @@; ;@h :@@@@@@.
@@@@ ...@@ @@ s@@ r@@, 5@@ @@ @@ @@ @@@; :@A r@@, s@B
@@ ,@2 @@ @@GAh#@s @@ G@r @@ @@ @@ @@M@: @X @@ :,,:
s@@2&@@. @@ @@;3@@ @@. A@: @@ @@ @@ @H #@9@5 @@. @M@@
,@@r5S5@@ @@ @@ @@; .@@2,,A@@ @@;;r;, @@;;rr, @@ @@ #@@X @@2. :@@
r3, r9: 25 22 2X. rh&GX; 5X9999s SX9999i iX Xs sX; r3GG9r.
....'
This thought sounds more than reasonable, if to read carefully the 'comments' in this thread.
gg...@gmail.com <gg...@gmail.com> #1569
je...@gmail.com <je...@gmail.com> #1570
Please assist and push a fix out to users.
Device:
HTC EVO 4G (supersonic) model PC36100
Hardware version 0002
Android version 2.2
Kernel version 2.6.32.17-gee557fd
htc-kernel@and18-2 #15
If any other information is needed, please contact me.
Thank you.
de...@gmail.com <de...@gmail.com> #1571
MOreover, this bug is marked "future release", which tells me that somebody in Google has gotten around to isolating the issue and fixing the damn thing. Me Tooing or AOLing doesn't solve it faster.
ra...@gmail.com <ra...@gmail.com> #1572
jo...@gmail.com <jo...@gmail.com> #1573
zj...@gmail.com <zj...@gmail.com> #1574
ly...@gmail.com <ly...@gmail.com> #1575
le...@gmail.com <le...@gmail.com> #1576
ek...@gmail.com <ek...@gmail.com> #1577
su...@gmail.com <su...@gmail.com> #1578
oo...@gmail.com <oo...@gmail.com> #1579
ff...@gmail.com <ff...@gmail.com> #1580
vq...@gmail.com <vq...@gmail.com> #1581
ne...@gmail.com <ne...@gmail.com> #1582
ba...@gmail.com <ba...@gmail.com> #1583
jo...@gmail.com <jo...@gmail.com> #1584
I'm using Andorid 2.2 of GAOSP Beta 3
When I chose a SMS thread, I found that the phone number at the top of screen (i.e. under the status bar) is not the one that the SMS thread is showing. The one shown at the top is a number that I have just called an hour before. I have never sent SMS to this number, nor received SMS from it. Out of curiosity, I tried to send a reply to the thread. It sent just like normal, and the sent message was (and is still) shown at the end of thread. However, when I check the details of the reply, it was sent to the number shown at the top of the screen, not the one of the thread.
I could not confirm where the SMS was ACTUALLY sent to, because that number is not a mobile phone and could not receive SMS.
sa...@gmail.com <sa...@gmail.com> #1585
fi...@gmail.com <fi...@gmail.com> #1586
MOTO DEFY MB525
2.1 ROM
sy...@gmail.com <sy...@gmail.com> #1587
rr...@gmail.com <rr...@gmail.com> #1588
I smell a lawsuit coming on if this doesn't get fixed and someone gets hurt but this bug.
ma...@gmail.com <ma...@gmail.com> #1589
yu...@gmail.com <yu...@gmail.com> #1590
li...@gmail.com <li...@gmail.com> #1591
jo...@gmail.com <jo...@gmail.com> #1592
The crazy thing is the same thing happens in the call log app. It often selects the entry at the bottom of the screen on the call log window no matter which entry I actually select. Also, just the other day I called someone and set their cell as default (over their GV number) and called them, worked fine, they didnt answer so I tapped the call button again when the phone returned to the call log screen and it randomly called their GV number without even giving a prompt. It wouldnt surprise me if one day it just calls the wrong person (meaning not the person at the bottom of the screen that it often calls instead anyway)
je...@gmail.com <je...@gmail.com> #1593
jo...@gmail.com <jo...@gmail.com> #1594
bl...@gmail.com <bl...@gmail.com> #1595
pw...@gmail.com <pw...@gmail.com> #1596
Over the next 3 hours or so, the HTC Desire HD began resending old messages to those contacts: for example, if a person had sent me an sms a week earlier, they received the same sms (that they had sent me!) from me.
Cost me a lot of money and embarrassment and lots of apologies...
zh...@gmail.com <zh...@gmail.com> #1597
it...@gmail.com <it...@gmail.com> #1598
he...@gmail.com <he...@gmail.com> #1599
I made a phone call to "Number A" and ended it.
Shortly thereafter I received an SMS msg from "Number B"
Upon replying to "Number B", I noticed it had been sent to "Number A"
This is apparent and confirmed because upon checking "View message details" of a particular msg of a thread; The recipient is shown as "Number A" and not "Number B"(The number of which the thread applies to.)
HTC Desire, Froyo
I love you Android, But I feel like you just slept with someone else.
se...@gmail.com <se...@gmail.com> #1600
se...@gmail.com <se...@gmail.com> #1601
ni...@gmail.com <ni...@gmail.com> #1602
Let's consider a logical point of view. For me, this only started happening more often than not when my text message history built up and I got more contacts. Now say the issue is only affected on Froyo, then that was released in May and so give it a couple months before handset makers release it to phones. Even more time will go by that people actually update their phone or are buying ones with Froyo preloaded. Now factor in the time it takes to build up text messages and contacts, and then factor in the rarity this event occurs. By that time you're almost surely into Q3-4 when poeple starting realizing this. It's not illogical to think that it might take 6 months or so before this very rare bug starts affecting people on a widespread scale, especially one like this that most people will pass off as a fat finger.
Obviously something was wrong and trying to convince people that the problem is themselves and not the handset does nothing to further the Android OS.
[Deleted User] <[Deleted User]> #1603
ji...@gmail.com <ji...@gmail.com> #1604
I donot want my sms sent to my EX!!
fl...@gmail.com <fl...@gmail.com> #1605
sy...@gmail.com <sy...@gmail.com> #1606
hy...@gmail.com <hy...@gmail.com> #1607
as...@gmail.com <as...@gmail.com> #1608
ka...@gmail.com <ka...@gmail.com> #1609
A few times when I didn't notice the switch I embarrassingly sent a text intended for my girlfriend to the wrong person! Yikes! Please fix this asap. Thanks!
ji...@gmail.com <ji...@gmail.com> #1610
fr...@gmail.com <fr...@gmail.com> #1611
Just use another apps< Handsent SMS etc
mi...@gmail.com <mi...@gmail.com> #1612
be...@gmail.com <be...@gmail.com> #1613
This behaviour only started after the update to 2.2
gr...@gmail.com <gr...@gmail.com> #1614
ma...@gmail.com <ma...@gmail.com> #1615
da...@gmail.com <da...@gmail.com> #1616
go...@gmail.com <go...@gmail.com> #1617
replied a msg. visually, everything looked normal but in the details section it showed this said reply was sent to another unintended contact. :(
so...@gmail.com <so...@gmail.com> #1618
Motorola Droid 1
Stock Messenger App
First started on Cyanogenmod 6.0 and has happened 10+ times, just updated to the latest stable build and see how it goes.
What happens is exactly what first post says. To fix it, I have to delete all threads and restart my phone, otherwise anyone I send a message to will be sent to the wrong person.
jo...@gmail.com <jo...@gmail.com> #1619
Also, to Google: can we get that "sunnylama" guy to be on a blacklist? I mean yeah he's trolling so I don't take what he says seriously. But the level at which he disturbed the list and abused text is a bit ridiculous. I'm all against censorship, but I'm for silencing when disrupting and abusing.
nn...@google.com <nn...@google.com> #1620
Thank you for your patience while we deal with this issue.
re...@drijkoningen.net <re...@drijkoningen.net> #1621
so maybe it is time to change the release model for the next android releases, or built a google update system (aka windows update) that ensures that critical/core components can be updated when a critical bug is uncovered. maybe it is also worth it to release the core apps as upgradable via the android market so it doesnt require an OS release to get the upgraded sms app ...
de...@gmail.com <de...@gmail.com> #1622
Please come out with a fix for ALL Android handsets and not just a selected TWO.
ha...@gmail.com <ha...@gmail.com> #1623
ah...@gmail.com <ah...@gmail.com> #1624
But that's just me.
ni...@gmail.com <ni...@gmail.com> #1625
mi...@gmail.com <mi...@gmail.com> #1626
go...@gmail.com <go...@gmail.com> #1627
go...@gmail.com <go...@gmail.com> #1628
[Deleted User] <[Deleted User]> #1629
xa...@gmail.com <xa...@gmail.com> #1630
I'm not a developer, but was successful at rebuilding Mms.apk for Android 2.2 (CM6 git repo) that seems to still function normally on a G1 running CM6.
(If someone can comment on whether or not this is a relevant patch for Android 2.2 as well, that would be helpful
re...@drijkoningen.net <re...@drijkoningen.net> #1631
some people won't even get the fix because their manufacturer will not find it worth, something is wrong with this distribution model, having a customized version of the OS shouldnt undermine the necessity of a google driven update service that can upgrade core components of the OS when necessary...
jo...@gmail.com <jo...@gmail.com> #1632
m....@gmail.com <m....@gmail.com> #1633
th...@gmail.com <th...@gmail.com> #1634
go...@s-web.pl <go...@s-web.pl> #1635
te...@gmail.com <te...@gmail.com> #1636
mt...@gmail.com <mt...@gmail.com> #1637
Description:
- I don't think the error is in the 'sending', at least not on my phone.
- I believe it is in the selection of the message from the message
list where the error lies.
- Ex. I will touch (select) a message, even the most recent one. But
the message thread opened will be with an older one with another
contact... even one that might be days+ old.
- If I am not paying attention, I will type out the message meant for
'Contact A', but because the client incorrectly opened up a thread
with 'Contact B', I risk sending a my message to B instead of the
intended recipient, A.
FWIW...
mh
02...@gmail.com <02...@gmail.com> #1638
ba...@gmail.com <ba...@gmail.com> #1639
"Usually, the message is sent to the correct recipient, but shown in the wrong thread."
I have not seen the developer's acknowledge this issue in particular. I try to filter through these messages but it could have gotten lost in all the spam. It happens on my HTC Desire regularly and do not want this to get lost in the "me tooooo!!" posts.
yo...@gmail.com <yo...@gmail.com> #1640
Samsung Galaxy S Captivate SGH-I896
Rogers Network (Canada)
Stock Messaging App
Firmware 2.1-update1
Baseband I896UXJI2
Kernal 2.6.29 root@sep-58 #2
Build number ECLAIR.UXJI2
Symptom:
Hypothetically speaking, I am texting my girlfriend;
"Please have yourself tested. I have found a growth..."
In the middle of typing out that text, I receive a text message from a friend, notification pops up.
I hit the send button as I have just finished typing, and put the phone away. 5 minutes pass, and my mother texts me:
"what in the f*** are you talking about!!!"
Not my fault. I did everything right. There is something absolutely bonkers with the stock messaging code. Very rare, but I have experienced it first-hand (once).
I believe it may be related to receiving a text in the middle of typing out your text. The new text re-jumbles your thread order, and your new text lands in the wrong thread. Your phone confirms when you check the history that you indeed did send it to the wrong person, but at the time your text was being typed out, you were absolutely on the correct thread/contact. This is not a fabrication. I still have the threads logged in my phone.
I hope I've helped send you on the right path and would love to contribute to develop a solution!
ke...@gmail.com <ke...@gmail.com> #1641
T-Mobile network
Stock SMS app
Firmware 1.6
Baseband 62.50SC.20.17U_2.22.23.02
Kernel 2.6.29-g023e5c9 htc-kernel@and18-2 #3
Build number 2.10.531.4 CL119339 release-keys
Sent a SMS in network yesterday to a contact with a message thread over 700 messages. Message went through as sent with no error or indication that it was redirect. The recipient (xxx) xxx-8240 did not receive the message but someone with a phone number (xxx) xxx-8245 did. The phone number is not in my contact list.
I have since deleted all SMS threads.
fi...@gmail.com <fi...@gmail.com> #1642
yo...@gmail.com <yo...@gmail.com> #1643
Same phone. Just received a text. Contact name was Person A, but text was about people that Person A had never met, and phone number looked wrong. I double-checked my Contacts to make sure I did not enter the wrong phone number, and found that I did not. Everything was correct. Went back into Messaging to check what the hell went wrong, and I saw the name visually change from wrong Person A to correct Person B. It was like a .5-sec refresh.
Now that didn't lead to texts being sent to the wrong person, but it does show that the Messaging app confuses itself sometimes. In this case, the numbers were correct, but why would the names have been shuffled up.
By the way, when the notification showed up, it showed the same error. I will keep this message locked from deletion in case someone wants to see my logs.
am...@gmail.com <am...@gmail.com> #1644
I went with the Android over the iPhone and I am having serious doubts about this platform. Does anyone have info on this?
fo...@gmail.com <fo...@gmail.com> #1645
fo...@gmail.com <fo...@gmail.com> #1646
ro...@gmail.com <ro...@gmail.com> #1647
FIX IT !!!!
Please
im...@gmail.com <im...@gmail.com> #1648
yo...@gmail.com <yo...@gmail.com> #1649
I was fed up with all the SMS Crap that was happening which was painfully explained by the entire world in various issue codes as follows:
First reported on 24/Feb/2009 almost 2 years ago!!
Some improvement here! Finally Google acknowledged the issue here
See:
Comment 1460 by project member n...@google.com, Jan 05, 2011
Thanks to everyone for your patience while we've been investigating these reports. As it turns out, we believe there are two distinct situations being discussed on this issue chain. Fortunately, we have fixes for both of them.
When some users tap to open a message in the Messaging application, they're seeing a different message appear instead. We don't believe this issue is affecting many users, but we've developed a fix that we're preparing to deploy. Of course, double-checking the displayed message before hitting "Send" will prevent any messages from being sent to the wrong recipients. We've found in testing this issue, it is more likely to occur if you tap on a message before the Messaging app is fully loaded, so we recommend waiting for all the elements to load before clicking on the message you want to display.
Separately, some users have reported that their SMS messages are being delivered to the wrong people. It took us some time to reproduce this issue, as it appears that it's only occurring very rarely. Even so, we've now managed to both reproduce it and develop a fix that we will deploy.
While we don't anticipate any persistent problems, we'll continue to investigate in case we come up with additional ways to trigger these bugs. Thanks again for helping us improve Android.
Status: FutureRelease
Pasted from <
AND
Comment 1620 by project member n...@google.com, Jan 22 (6 days ago)
As you might have seen, we are in the process of rolling out a fix for this SMS issue to Nexus One and Nexus S devices. In addition, we have published patches which resolve this issue. The patches are available at
Thank you for your patience while we deal with this issue.
Status: Released
Pasted from <
This issue is so painful that it even got reported here:
With a lot of grief, I decided to roll back to stock ROM and upgraded to 2.2.2 FRG83G, see below: (See attachment: SMS bug post latest update device.png)
Few SMS-es later I realize that ALL the pain that I underwent was in vain. The damn bug has not been addressed AT ALL!!
See SMS that I apparently received from LM-HDFC-sec (See attachment: SMS Bug Not Fixed Outside device.png)
When I open the SMS, I see that I actually got this from My Vodafone! (See attachment: SMS Bug Not Fixed Inside device.png)
C'mon Google, does this mean that you guys don’t have the brains to even see this? Is fixing this BEYOND you guys' competence level? Or is it that you guys JUST DON’T CARE?????
Are all people who spent money buying Google Nexus One and Google Nexus S IDOITS????
I mean, c'mon, we expected Android to have some advanced features and futuristic features that worked!! Here you are not creating something revolutionary! You are simply trying to COPY Apple iOS SMS Threading and cant even copy correctly? Nor do you give the user an option to TURN OFF Threaded SMS.
WTF??
This is Enough!! Get your bloody act together now!!
ar...@gmail.com <ar...@gmail.com> #1650
It is not as bad as messages being sent to the wrong contact, but it is difficult when looking for a specific message. Worst case, google could atleast provide the option to see messages listed chronologically like my old Nokia did; it worked perfectly!
I love android too much to give up on it yet, but this issue is a real embarrassment.
le...@gmail.com <le...@gmail.com> #1651
le...@gmail.com <le...@gmail.com> #1652
Please fix that, and not only on Nexuses.
Thank you for your attention.
PS: this post seems to describe correctly what happened to me: "it seems like if in the middle of typing a reply to a text message, you receive another message, the system gets confused about who you’re talking to. Even if it displays you’re talking to one person in the dialog window, messages could be sent to someone else."
(from
de...@gmail.com <de...@gmail.com> #1656
/vent
ch...@gmail.com <ch...@gmail.com> #1657
di...@gmail.com <di...@gmail.com> #1658
la...@gmail.com <la...@gmail.com> #1659
Thanks for all the hard work on this!
bu...@gmail.com <bu...@gmail.com> #1660
There are two issues I am having and both of these are critical to having a good phone.
1) Sometimes when I am texting one person a reply in a thread and press send, it suddenly sends the message to a completely random person in my contacts lists that has nothing to do with my sms thread. Sometimes it says it has gone to the wrong person but when I send that person a message saying 'sorry, that message wasn't for you' they reply saying 'what wasn't?' so sometimes the phone is telling me it's gone to someone incorrect when is hasn't. However, sometimes it has been sent to the wrong person.
2) In my messages, I sometimes press on a thread I would like to open and it opens a completely different message to the one I have pressed on and certainly not one that is near to the message I wanted orginally.
The second problem is a painful inconvenience. The first problem is absolutely crucial to my trust in my phone. At the moment, when I press send, my heart's in my mouth as to whether it will go to the person I intend it to go to, or someone I would in no way want to see my message. This is a fundamental flaw and it needs sorting immediately.
I await your response with anticipation.
Thanks,
cg...@google.com <cg...@google.com> #1661
Thank you for patience while we address this issue and thanks for helping us improve Android.
ev...@gmail.com <ev...@gmail.com> #1664
Over the weekend, I sent someone an SMS and received a toast message that it was delivered to the right contact (I have delivery reports enabled), but a thread for it never showed up in the Messaging app. Said message later appeared in a NEW thread to a DIFFERENT contact. In this case, the message did go to the right contact, but was later mistakenly attributed to the wrong contact after the fact.
Today, I received an SMS from someone, and responded to that thread in Messaging. My response, however, went to a DIFFERENT contact entirely, and the delivery report showed the different (incorrect) contact as the recipient!
I've read that some "short number" messages from texting services can cause this? I receive SMS updates from my bank (USAA) and from Mint.com, so it could be either of those that caused this on my phone, I suppose.
kr...@gmail.com <kr...@gmail.com> #1665
Text sent to wrong person, Feb 1, 2011 at 1400. first occurrence on this phone.
he...@gmail.com <he...@gmail.com> #1666
I typed message to contact A in thread, copied text before sending.
Pasted the text in thread to contact B and added some text and sent.
Everything seamed fine, BUT when in thread checking message options-> view report for contact B the phone number of contact A is shown.
I verified and contact A had received both sms while contact B got none.
[Deleted User] <[Deleted User]> #1667
re...@drijkoningen.net <re...@drijkoningen.net> #1668
rm...@gmail.com <rm...@gmail.com> #1669
cg...@gmail.com <cg...@gmail.com> #1670
ty...@gmail.com <ty...@gmail.com> #1671
It's happened as recently as last night. I sent a message to my boyfriend that ended up going to my dad. It wasn't anything inappropriate, but it's very annoying that this is happening.
bi...@gmail.com <bi...@gmail.com> #1672
ANDROID 2.2. BASEBAND 32.48.00.32u_5.10.05.30 HTC-KERNEL@AND18-2 #1
BUILD 2.17.61.3 CL274424 RELEASE-KEYS
SOFTWARE NUMBER 2.17.61.3
Using both HTC sms app and chomp sms and handcent
open a message thread with someone to chat, type a message, press send. Immediately the name of the person on the top of the thread changes to that of another contact and thread, message is sent to the second, and wrong person.
Also, send a message, message says sent, but message never arrives.
This has happened to me in android 2.1 and 2.2 around 15 times over the last 3 months.
bi...@gmail.com <bi...@gmail.com> #1673
ANDROID 2.2. BASEBAND 32.48.00.32u_5.10.05.30 HTC-KERNEL@AND18-2 #1
BUILD 2.17.61.3 CL274424 RELEASE-KEYS
SOFTWARE NUMBER 2.17.61.3
Using both HTC sms app and chomp sms and handcent
open a message thread with someone to chat, type a message, press send. Immediately the name of the person on the top of the thread changes to that of another contact and thread, message is sent to the second, and wrong person.
Also, send a message, message says sent, but message never arrives.
This has happened to me in android 2.1 and 2.2 around 15 times over the last 3 months.
wo...@gmail.com <wo...@gmail.com> #1674
Captivate, stock ROM, rooted, AT&T Mobility
zr...@gmail.com <zr...@gmail.com> #1675
zr...@gmail.com <zr...@gmail.com> #1676
I've had this happen several times over the life of my Motorola Droid, and with my new Samsung Fascinate. It was merely an annoyance because I always noticed when it happened. Because of this, I've always had the fear that I wouldn't notice and I would send an sms to the wrong person.
-- I found this to be the case, too.
"Separately, some users have reported that their SMS messages are being delivered to the wrong people. It took us some time to reproduce this issue, as it appears that it's only occurring very rarely."
Now, this issue is more than an annoyance. I recently replied to a text, and the person never received the reply. I double checked, and it showed in the sms thread as being sent and delivered to that person. When I checked the message details, the number it had listed in the "To:" field was not the same person. In fact, it wasn't even a contact of mine; it was the number of the last call I had received.
Today, I had a friend receive gibberish from me. I resent the message, and he reported gibberish again. Upon investigation, any time I send an sms with more than 160 characters, then it corrupts the data. For his Blackberry, this caused him to receive gibberish. When I the same message to myself, I receive the message, but at the 160 character split, there are a bunch of @ symbols interjected.
Vzw Samsung Fascinate, DL30 Froyo ROM, stock sms app
re...@drijkoningen.net <re...@drijkoningen.net> #1677
lo...@gmail.com <lo...@gmail.com> #1678
bt...@gmail.com <bt...@gmail.com> #1679
Android OS Developers: I no longer recommend my Android phone to anyone. This and other bugs make me regret switching from the iPhone. I'll be happy to switch back to after the 2nd gen iPhone eventually comes out on Verizon.
sa...@gmail.com <sa...@gmail.com> #1680
I was able to text person a correctly
But when I received a text from person b, my phone replied to person c.
This opened a new thread for person c. Texting person c replied to person d.
I was able to communicate with person c by texting person b, and reading new messages in a separate thread.
I use the swype keyboard, default text messaging app, and launcherpro.
Restarting the phone ended the glitch temporarily.
br...@gmail.com <br...@gmail.com> #1681
km...@gmail.com <km...@gmail.com> #1682
LG Vortex
Android version 2.2.1
Baseband VS660MV6.6038.1001
Kernel 2.6.32.9
Build FRG83
SW VS660ZV6
When replying to a text, the message, MOST of the time, gets sent to a contact to whom I was previously texting. Although the correct thread is showing on the screen, I finally noticed that the contact whose number is listed in the gray area at the top of the screen is a different contact, and this is always who the message is sent to. When I check back on the message thread, it looks like the message went to the correct recipient, even though the message was received by a different person (the one listed in the gray area). Only the message details list the number to which the text was sent.
th...@gmail.com <th...@gmail.com> #1683
th...@gmail.com <th...@gmail.com> #1684
Verizon Wireless
I do not have an Adroid phone. I sent my husband an SMS to his android phone. I didn't respond, I created a new message. When he received the message it came from "Robert" and I'm "Jane". When he sends SMS out he's never quite sure where they're going to. It's like SMS roulette.
It's great that google is looking into the problem and will be sending a patch to fix it. It would be even better if there was a timeframe. This has been going on for months.
pm...@gmail.com <pm...@gmail.com> #1685
no...@gmail.com <no...@gmail.com> #1686
ty...@gmail.com <ty...@gmail.com> #1687
mi...@gmail.com <mi...@gmail.com> #1688
please fix bug ASAP
ch...@gmail.com <ch...@gmail.com> #1689
pa...@gmail.com <pa...@gmail.com> #1690
jo...@gmail.com <jo...@gmail.com> #1691
Completely stock. No 3rd party mms apps.
Sense.
Also, same thing happens in contacts widget...pick one and another contact not even present in widget or on screen will come up.
Google can't support their products...too much fragmentation and inter dependencies...wm5 was infinitely better...not as sexy but functionally way superior...google epic fail.
am...@gmail.com <am...@gmail.com> #1692
si...@gmail.com <si...@gmail.com> #1693
ma...@gmail.com <ma...@gmail.com> #1694
mi...@gmail.com <mi...@gmail.com> #1695
I also have this problem, need a fix badly.
bu...@gmail.com <bu...@gmail.com> #1696
bu...@gmail.com <bu...@gmail.com> #1697
le...@gmail.com <le...@gmail.com> #1698
le...@gmail.com <le...@gmail.com> #1699
not rooted
ge...@gmail.com <ge...@gmail.com> #1700
MyTouch 4G (HTC Glacier), purchased Feb 2011, Software v.2.2.1
Stock, Not rooted.
gm...@gmail.com <gm...@gmail.com> #1701
gm...@gmail.com <gm...@gmail.com> #1702
pu...@gmail.com <pu...@gmail.com> #1703
What a pain!! Bottom line is: I love Android, I hate iPhone "jail", but I will not be back to Android anytime soon unless three things happen: 1) Google must get this bug fix out to _all_ handsets on _all_ carriers, 2) Google, the handset makers and the carriers _all_ become _much_ more transparent about their timelines for getting updates available, and 3) Google fixes its "fix process" to more rapidly respond to this and similar situations.
The extended delay in getting this fix out to mainstream handsets, especially where such basic essential functionality is concerned, is completely unacceptable and an untenable situation for Android users.
It is an insufficient level of support to simply state in a bug report thread (as in this one) that "Yeah, we have developed a fix. It has been rolled out to our own branded handsets (Nexus One and Nexus S)." What about the millions of other customers who own handsets made by other manufacturers and on networks other than T-Mobile. When do _they_ get the fix release???
re...@drijkoningen.net <re...@drijkoningen.net> #1704
ka...@gmail.com <ka...@gmail.com> #1705
Thanks a lot.
[Deleted User] <[Deleted User]> #1707
be...@gmail.com <be...@gmail.com> #1708
Eventually I rooted the phone and installed a custom ROM that had included the changes. But it is simply too late. Android will always hold a special place in my heart, but there's just too many problems not with Google per se, but with their manufacturers. Sad to go.
jo...@gmail.com <jo...@gmail.com> #1709
all versions. Maybe getcontact api?
pm...@verizon.net <pm...@verizon.net> #1710
mk...@gmail.com <mk...@gmail.com> #1711
li...@gmail.com <li...@gmail.com> #1712
A sms from Person A is added to Person B's thread. Then I accidentally replied the message to Person B instead of Person A......
st...@gmail.com <st...@gmail.com> #1713
This only happens to me when i have the window animations on. With it off it has yet to do this.
pl...@gmail.com <pl...@gmail.com> #1714
ra...@gmail.com <ra...@gmail.com> #1715
Issue is that when I reply to a text, the app will sometimes pick the wrong message thread to reply to. I have had this issue since I bought the Evo (the day it came out), across all Sprint fimrware updates.
It does not matter if I am involved in many texts at once, or just replying to the first text of the morning, I appear to have the same odds of the correct contact being used.
This is a serious security risk. Clearly, when one uses a phone, one of the most basic goals of the phone should be to connect you to the requested contact.
sh...@projektenterprises.com <sh...@projektenterprises.com> #1716
Also I use handcent on my MyTouch 3g slide running CM7-nightly and it doesn't happen there.
ta...@gmail.com <ta...@gmail.com> #1717
[Deleted User] <[Deleted User]> #1718
go...@gmail.com <go...@gmail.com> #1719
go...@gmail.com <go...@gmail.com> #1720
re...@drijkoningen.net <re...@drijkoningen.net> #1721
sc...@gmail.com <sc...@gmail.com> #1722
I`ve got this phone since december 2010 and it worked fine. Yesterday, I`ve installed Swype and this bug scared the hell out of me when I saw that wrong message was sent to the wrong person. In addition, all my other mesagges were gone. Luckily, it was just minor version of this bug:
Message to Person A was shown in Person B thread
Msg was sent to Person A, and he received it correctly
Respond from Person A was also shown in Person B thread.
Fix it - this is critical issue. What`s the use of flexible OS if I can`t send SMS safely?
mt...@gmail.com <mt...@gmail.com> #1723
al...@gmail.com <al...@gmail.com> #1724
Got phone in Jan, took about 1 month to see this.
Go into standard messaging app, and sometimes, the thread with the most recent SMS activity (shown at top of list) has contact name and icon replicated from the thread below it. Clicking this thread to send SMS to person then corrects contact show, but obviously that might not get noticed. Thread contact info then stays correct for about 30 minutes and then error re-appears
Have also had notification state wrong contact on newly received SMS. On going into messaging app and clicking reported 'incorrect' name next to SMS received, contact name then corrects itself, so message was added to correct thread.
This sounds such an embarrassing issue for Android. I'm astounded that they're either ignoring this issue, can't fix it or staying quiet about it being fixed in a later android version. My betting is for the latter as I guess the majority of mobile manufactures don't want to bother to keep offering the latest firmware. So the only way I think they'll listen to that, is if loads of people keep returning their handsets until it gets fixed.
ke...@gmail.com <ke...@gmail.com> #1725
ca...@gmail.com <ca...@gmail.com> #1726
hu...@gmail.com <hu...@gmail.com> #1727
mu...@gmail.com <mu...@gmail.com> #1728
SAMSUNG GALAXY S (GT-I90000), Eclair 2.1-update1 (original OS, not rooted, or any SMS app other than Samsung standard software) Bought in Malaysia.
1. Receive an SMS from A, but contact is shown as B. Once had about 6 sms exhchanges with B, but actually sender were A. thank god it was official busines. (So far happen once or twice only).
OR
2. Received sms from A, type in the reply box, and it sends the sms to B. Most of the time B will be the last or 2nd last person I had some SMS conversation with.
Read the recommendation to wait until the app loaded. done that, still the problem keep coming back (happens about 2-3 times a week, for the last 5 months)
Started experiencing this when the no. of SMS started to reach three digits for some conversation. since then try to frequently tidy up the inbox, still it occurs.
Now my only resort is to "compose new message" instead of just replying directly for message that are deemed sensitive.
PLEASE dont just say we'll include it in the next update so n so n so. grown tired of that.
as...@gmail.com <as...@gmail.com> #1729
mi...@gmail.com <mi...@gmail.com> #1730
mi...@gmail.com <mi...@gmail.com> #1731
yo...@gmail.com <yo...@gmail.com> #1732
lo...@gmail.com <lo...@gmail.com> #1733
[Deleted User] <[Deleted User]> #1734
I've waited and waited for a fix to come out for this bug, my family thought it was a user error but I've been reading and I'm now certain it's not me.
It doesn't happen all the time, but it happens so much that I'm willing to give up everything I love about the phone just so that I don't have to deal with this ridiculous crap anymore.
Originally what would happen was I'd be texting person A, and then person C would reply. The 'send to' at the top would say Person A, but when I hit the back button to view all the people who have texted me the name would switch then to person B.
Pressing on the message (which now says person B) would have my entire conversation with person A in the box, 'send to' would still say Person A, but all my texts from then on would go to Person B.
I text more than I use applications so I'm willing to give all of those up just to feel secure in the privacy I'm supposed to be getting.
[Deleted User] <[Deleted User]> #1735
Now whats been happening is that I don't even get to see who I've been texting anymore. I no longer know that a text I've sent has been sent to person B when I was originally texting person A. Person A will never receive it if person B doesn't reply and ask me what I was talking about so that I can resend the text to the proper person.
pr...@gmail.com <pr...@gmail.com> #1736
lu...@gmail.com <lu...@gmail.com> #1737
Even if the Google team can fix the bug, I wonder how can the majority of users benefit from the fix.
Let me explain: I have an HTC Wildfire with Froyo 2.2.1, and HTC has clearly stated that they no longer intend to release updates for this phone.
So, if a 2.2.2 or 2.2.3 (or even a 2.3.2) fixes the bug, but HTC does not issue an updated release containing the fix... this means that MANY phones out there will never get the bugfix.
IMHO Google should FORCE phone makers to release critical updates such as this: it can't be left to the choice (and commercial greed to sell newer models) of the phone manufacturers...
le...@gmail.com <le...@gmail.com> #1738
lu...@gmail.com <lu...@gmail.com> #1739
pe...@gmail.com <pe...@gmail.com> #1740
PLEASE fix this soon !!
cj...@themusicflame.com <cj...@themusicflame.com> #1741
fi...@gmail.com <fi...@gmail.com> #1742
mo...@gmail.com <mo...@gmail.com> #1743
JG
as...@gmail.com <as...@gmail.com> #1744
he...@gmail.com <he...@gmail.com> #1745
Some of my friends (those whom I send the most texts to) do not receive my texts anymore. Although my phone says they are "delivered"! I thought that maybe if I empty the conversations I can send again, but nope. Now, I tried to delete the whole sms history and it didnt work. It is really frustrating to not be able to send texts to your best friends/husband!!
I have a SonyEricsson Xperia 10mini. Android 2.2
Help plz
mo...@gmail.com <mo...@gmail.com> #1746
ka...@gmail.com <ka...@gmail.com> #1747
br...@gmail.com <br...@gmail.com> #1748
fi...@yahoo.com <fi...@yahoo.com> #1749
bi...@gmail.com <bi...@gmail.com> #1750
wa...@gmail.com <wa...@gmail.com> #1751
dm...@gmail.com <dm...@gmail.com> #1752
I sent an "apology" txt to the 2nd recipient, only to be told he hadn't received the 1st message. I also re-typed & re-sent the original message to the original recipient and she asked why I resent the same message twice.
This happened on my HTC EVO on Sprint.
mi...@dianomi.com <mi...@dianomi.com> #1753
ws...@gmail.com <ws...@gmail.com> #1754
ha...@gmail.com <ha...@gmail.com> #1755
ny...@gmail.com <ny...@gmail.com> #1756
4 day using. 3 wrong sended SMS on random number. :(
re...@drijkoningen.net <re...@drijkoningen.net> #1757
Almost april, still no patch to my device....
to...@googlemail.com <to...@googlemail.com> #1758
ps...@gmail.com <ps...@gmail.com> #1759
iv...@gmail.com <iv...@gmail.com> #1760
te...@gmail.com <te...@gmail.com> #1761
mo...@gmail.com <mo...@gmail.com> #1762
st...@gmail.com <st...@gmail.com> #1763
er...@gmail.com <er...@gmail.com> #1764
th...@gmail.com <th...@gmail.com> #1765
md...@googlemail.com <md...@googlemail.com> #1766
ju...@gmail.com <ju...@gmail.com> #1767
I own a new Motorola Milestone 2 with Android 2.2. Today I answered several times to SMS of one friend of mine and my message arrived at another friend.
Milestone 2
- Systemversion
- Model No. MotoA953
- Baseband-Version EPU93ST2_U_03.02.00
- Kernel Version 2.6.32.9-gd2377eb
- Build No MILS2_U6_2.2.16
Regards from Switzerland
Juerg
ma...@gmail.com <ma...@gmail.com> #1768
yo...@gmail.com <yo...@gmail.com> #1769
sh...@gmail.com <sh...@gmail.com> #1770
ky...@gmail.com <ky...@gmail.com> #1771
mi...@gmail.com <mi...@gmail.com> #1772
pl...@xnet.co.nz <pl...@xnet.co.nz> #1773
de...@gmail.com <de...@gmail.com> #1774
pr...@gmail.com <pr...@gmail.com> #1775
re...@drijkoningen.net <re...@drijkoningen.net> #1776
Now I heard the news that finally google wants to regain more control over the next releases of android, but this sadly won't have any impact over us froyo user that are still waiting for nearly 5 months now to get a fix that has been marked as critical onto our device.
r....@gmail.com <r....@gmail.com> #1777
mi...@googlemail.com <mi...@googlemail.com> #1778
ga...@gmail.com <ga...@gmail.com> #1779
al...@gmail.com <al...@gmail.com> #1780
Not only does clicking somebody's name when texting point to the wrong person, but my phone randomly calls my brother and his phone randomly calls me. Yea I know sounds weird, sounds like some paranormal stuff but no this happens at least once a week, its pretty annoying. Another thing that is annoying about my phone is the constant restarting. My phone restarts randomly when things happen like I open a game and get a phone call at the same time, yeah annoying. I dont know about you guys but the Andriod O.S. has brought for more bad then good to me. And on top of all of the issues about my phone it always dies. You know technology is great but it seems like things are getting to the point where we do things just to do it. In all honesty how often do you use video chat on your phone? How often do you browse the internet on your phone? If your like me, you barely use these features and that is where our phones are heading.
phone: HTC evo
thank you,
-_-
ni...@gmail.com <ni...@gmail.com> #1781
This was my experience:
User action - view an existing thread (containing several messages) with recipient A
User action - reply to last message, and send.
Message goes to recipient B.
The reply still shows up in the recipient A thread, but clicking on message details shows that it went to recipient B (recipient B confirmed this).
From looking at the message timestamps, it's possible that this is a race condition caused by receiving an unrelated message from B before the initial message was sent. There were no previous messages from recipient B in the message view prior to this.
Will try to reproduce with a second handset.
p.s. This is possibly an example of a useful comment to a bug. CONSIDER WHETHER YOUR CONTRIBUTION IS USEFUL, OR IF IT JUST REPEATS SOMETHING SAID BY SOMEONE ELSE IN THE PREVIOUS 1700 COMMENTS TO THIS ISSUE. Think carefully - upwards of 7000 people will automatically receive emails with your post. Please consider whether your comment is helpful, or whether it is just noise that will slow down getting this bug fixed.
If you don't have anything USEFUL to add then just 'star' the issue, and keep quiet please.
Cheers,
Tim.
cs...@gmail.com <cs...@gmail.com> #1782
ss...@aol.com <ss...@aol.com> #1783
hi...@gmail.com <hi...@gmail.com> #1784
1. Receive message from recepient A.
2. Read it. Reply to it or not - doesn't matter.
3. Receive message from recepient B and try to answer it using notifications bar. This action opens messenger with thread to recepient B, but it will be titled as thread to "recepient A". In this case reply will go to recepient A.
Workaround for my case - just not to answer to SMS via notification area. Bug had never occured when I replied to SMS via Messenger directly.
th...@gmail.com <th...@gmail.com> #1785
Receive sms message from recepient A
The sms message is shown under recepient B thread
Anser go to receipent B
In message details i see receipent A phone number (even under recepient B thread)
For me it's really important to fix it. I'm a therapyst and it's complicated for my clients privacy!!!
el...@gmail.com <el...@gmail.com> #1786
Received a text msg from Person A but came up in a conversation of messages with person B. Replied directly and it replied to person B and there was NO way of finding out What NUMBER I actually sent the message to OR who person A was AT ALL!
This is not acceptable, I will now have to use a 3rd party SMS app.
bl...@gmail.com <bl...@gmail.com> #1787
bl...@gmail.com <bl...@gmail.com> #1788
To add something possibly useful:
- One of the messages I tried to send (say, to contact 'El2') went to the contact right above her (to 'El1').
- Although this seems like a user error, the message only shows up in the intended 'EL2' thread. The details shows it is send to 'El1' though. The 'El1' thread only shows him asking why I send him that message.
- I've never contacted the actual recipient before using this phone. Not sure about the intended recipient.
- Several other messages got mixed up as well, between 'El2' and the newly added contacts.
Some details:
- I was also sending sms'es to people I just added to my contact list, and calling several that were not yet in my contact list. One of these was added with a name starting with 'D'. Maybe all the contacts shifted one position in the list while composing/sending the message?
- I had a flaky connection, so switched often between no connection, gsm/gprs only, umts. Perhaps the syncing-contacts-with-google added to the problem? Could also be the case that I pressed 'send' while not having a connection, the message being send later after the contact list changed.
- Some messages went over the 160 char limit, but it seems that the messages were send to the wrong recipients as a whole.
All in all it seems impossible to reliably reproduce the environment I was in. But hopefully everything is fixed by now.
a3...@gmail.com <a3...@gmail.com> #1789
terrible....
ab...@gmail.com <ab...@gmail.com> #1790
wi...@gmail.com <wi...@gmail.com> #1791
th...@gmail.com <th...@gmail.com> #1792
Received sms from person A
It goes to person B thread
Answer goes to person B
I tried to install Gosms and those messed up threads don't fix: sms still appear on wrong thread. What can I do?
of...@gmail.com <of...@gmail.com> #1793
Dear Google guys, does 1793 comments aren't enough?? please fix it! we all had embarrassing situations because of that bug
ne...@gmail.com <ne...@gmail.com> #1794
Using HTC EVO 4G.
I went into messages app. I selected an existing message thread I had with a contact. I typed in my new message and clicked Send. When I went to the message list, I saw that the new message I had just typed was sent to another contact (that I had an existing message thread with).
This is definitely a bug that needs to be fixed and soon!
jo...@gmail.com <jo...@gmail.com> #1795
When i open messages, i so often get wrong old ones to.
Why is this still an isue?
ro...@gmail.com <ro...@gmail.com> #1796
HTC EVO 4G
Was replying to message from someone not in my contacts ( Their phone number was displayed ) and the message routed to another person in my contacts. The message appeared in the wrong thread as well.
li...@gmail.com <li...@gmail.com> #1797
ch...@hand-family.org <ch...@hand-family.org> #1798
I'm not stupid. I wasn't looking at a screen where I was preparing a message to my wife but was too stupid to realize who I was sending to. I replied to the spammer, not to my wife.
I think we deserve better than to be called troll conspirators, or so stupid we can't understand what the GUI is doing. This bug hurts and humiliates people. Most of us have been great supporters of Android. But Android fame can be very fleeting if developers continue to demean and ignore us.
jo...@gmail.com <jo...@gmail.com> #1799
jo...@gmail.com <jo...@gmail.com> #1800
I replied using SMS to Person A almost instantly after receiving a message yet my reply went to Person B (someone I had phoned about 1 hour previously. Never texted). Even in the conversation screen it is with Person A - its only when i click message details on the one I sent that it actually shows Person B's phone number.
I have an HTC Desire with Android 2.2, only 1 week old.
0....@googlemail.com <0....@googlemail.com> #1801
But since the information in the message detail is right (showing in the wrong message thread), could some app with sms priviliges not act as a watchdog and check all threads versus their message details and report, if the two differ?
that would address the problem, that most people dont notice their sms beeing sent to the wrong recipient but waiting for an answer forever.
If enough data is collected, maybe one could see a pattern which leads to the real reason for the bug.
Im not an Android-Dev, but maybe someone wants to give this a shot? On Dev-Phones, the app could collect logs as well and save it in a convinient file to email.
Hope this gets fixed soon, severe bug with history, not good.
da...@gmail.com <da...@gmail.com> #1802
cn...@gmail.com <cn...@gmail.com> #1803
Google this problem and it's VERY evident that MANY users are having the same issue. As an aside, my Droid just upgraded from 2.2 to 2.3 software, and this is about when the problem started. Unfortunately, there is no way to back up to a previous version as there was in the BB Storm, without rooting the phone.
Anyone hearing of a fix from either Motorola or Google on this yet? Should I retain an attorney in case my text messages start going to the wrong people and this becomes a HUGE security breach and violation of my privacy?
ad...@gmail.com <ad...@gmail.com> #1804
ad...@gmail.com <ad...@gmail.com> #1805
sh...@gmail.com <sh...@gmail.com> #1806
Second issue. Had an email-1 open in the Gmail app, then received a message-2 on GTalk. Responded to message-2 but email-1 attached itself to the message.
It looks to me that if two apps that use the SMS engine are open at the same time, confusion ensues.
yo...@gmail.com <yo...@gmail.com> #1807
ma...@gmail.com <ma...@gmail.com> #1808
ma...@gmail.com <ma...@gmail.com> #1809
te...@gmail.com <te...@gmail.com> #1810
I have also sent a message to person A. Used the phone for a bit. When re-entering the SMS app the message is suddenly in person B's thread.
I hope this is fixed soon.
jc...@gmail.com <jc...@gmail.com> #1811
w....@gmail.com <w....@gmail.com> #1812
Yesteday I've experienced this bug for the first time, using my mobile for business this could be very embarassing in certain cases...
cr...@gmail.com <cr...@gmail.com> #1813
ja...@gmail.com <ja...@gmail.com> #1814
ja...@gmail.com <ja...@gmail.com> #1815
lo...@gmail.com <lo...@gmail.com> #1816
[Deleted User] <[Deleted User]> #1817
I just sent a text to one girlfriend that my HTC Evo shows was actually sent to her. BUT, the problem is that my girl in Mexico texted me and asked why I sent her a text in English about going to Las Vegas!! That's completely MESSED UP guys!
I switched to this from my Iphone cause the Iphone home key wouldn't work, but this is worse! Fix this or I'll definitely be going back. Apple never screwed up my personal life!!!
Description
Default Android Messaging Application.
No apps installed.
Messaging.
- Send SMS message to RecipientA.
- Message appears to be successfully sent to RecipientA.
- RecipientX receives message.
- 'View Message Details' in RecipientA thread, shows 'To' field as being RecipientX's MSISDN (phone number).
Has occurred multiple times on this device now.
Interestingly, has never occured on my other Nexus running the same FRF50 build.