mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-21 15:05:19 +00:00
Replaced 'now' with 12/24 hour time
This commit is contained in:
parent
16b8ad46c0
commit
f90599451f
@ -92,11 +92,9 @@ object DateUtils : android.text.format.DateUtils() {
|
||||
}
|
||||
|
||||
fun getDisplayFormattedTimeSpanString(c: Context, locale: Locale, timestamp: Long): String {
|
||||
// If the timestamp is invalid (ie. 0) then assume we're waiting on data and just use the 'Now' copy
|
||||
return if (timestamp == 0L || isWithin(timestamp, 1, TimeUnit.MINUTES)) {
|
||||
// TODO ACL: Adjust as per SES-360
|
||||
"Now"
|
||||
} else if (isToday(timestamp)) {
|
||||
// If the timestamp is within the last 24 hours we just give the time, e.g, "1:23 PM" or
|
||||
// "13:23" depending on 12/24 hour formatting.
|
||||
return if (isToday(timestamp)) {
|
||||
getFormattedDateTime(timestamp, getHourFormat(c), locale)
|
||||
} else if (isWithin(timestamp, 6, TimeUnit.DAYS)) {
|
||||
getFormattedDateTime(timestamp, "EEE " + getHourFormat(c), locale)
|
||||
|
Loading…
Reference in New Issue
Block a user