We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the class PiwikDate renders the date in a 12-hours format without the AM/PM indication, as a result all actions are logged in the morning!
Changing the following line in both constructors for the PiwikDate class fixes the issue
format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); into format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Thank you! Andrea
The text was updated successfully, but these errors were encountered:
113e005
Good find @rivoduck - and kuddos for quick fix @bcsorba 👍
Sorry, something went wrong.
Released in v1.1
bcsorba
No branches or pull requests
the class PiwikDate renders the date in a 12-hours format without the AM/PM indication, as a result all actions are logged in the morning!
Changing the following line in both constructors for the PiwikDate class fixes the issue
format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
into
format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Thank you!
Andrea
The text was updated successfully, but these errors were encountered: