Open GoogleCodeExporter opened 8 years ago
When SMSParser.getSMSThreads() is called, and the Collection of SMSThreads is
constructed, the following function is called:
private void addSMSsToThread(SMSThread thread, Element messages)
{
...
if (!time.before(thread.getDate())) {
time = new Date(time.getTime() -
86400000L);
}
...
}
This if statement causes dates to be set back 24 hours. So the dates of some
SMS messages (which we have already determined will be inaccurate due to the
way GV displays them) are made to be even more inaccurate.
This if statement should be removed at least until we have a better way to
determine the date/time of each individual message.
Original comment by ckolek@gmail.com
on 21 Feb 2012 at 6:44
Thanks ckolek! I will review that code and make adjustments...
Original comment by malone.j...@gmail.com
on 21 Feb 2012 at 6:50
Original issue reported on code.google.com by
malone.j...@gmail.com
on 3 Feb 2012 at 4:14