What steps will reproduce the problem?
1. Send a tweet between noon and 1 PM
2. Wait 48+ hours
3. Run script and note time
What is the expected output? What do you see instead?
Time should be e.g. "12:33 PM Mar 19th"
Instead, script reports time as "12:33 AM Mar 19th"
What version of the product are you using? On what operating system?
twitterjs-1[1].12.2-release.zip
Please provide any additional information below.
Something like this might get the job done. :-)
if (hour == 0) {
hour = 12;
} else if (hour == 12) {
ampm = 'PM';
} else if (hour > 12) {
hour -= 12;
ampm = 'PM';
}
Original issue reported on code.google.com by ic3_n...@yahoo.com on 19 May 2009 at 5:05
Original issue reported on code.google.com by
ic3_n...@yahoo.com
on 19 May 2009 at 5:05