Fix wrong message time(12:XX pm showing as 00:XX pm)

This commit is contained in:
Lorem 2020-07-19 19:53:30 +05:30
parent f8eba58b12
commit a050cb271c
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ extension DateTimeExtension on DateTime {
/// Returns a simple time String.
/// TODO: Add localization
String localizedTimeOfDay(BuildContext context) {
return L10n.of(context).timeOfDay(
_z(hour % 12), _z(hour), _z(minute), hour > 11 ? 'pm' : 'am');
return L10n.of(context).timeOfDay(_z(hour == 12 ? hour : hour % 12),
_z(hour), _z(minute), hour > 11 ? 'pm' : 'am');
}
/// Returns [localizedTimeOfDay()] if the ChatTime is today, the name of the week