diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-07-11 13:55:29 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-07-11 13:55:29 +0200 |
commit | f6649ef8382551c8b4010e194d6d77241bc86215 (patch) | |
tree | 8c123113885e89c1749a35075a0826a613a1dc17 /src/eu | |
parent | e7a0040ec5423c92128f394d0655cbfa5889082e (diff) |
changed 'show time threshold' to 6h
Diffstat (limited to 'src/eu')
-rw-r--r-- | src/eu/siacs/conversations/utils/UIHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eu/siacs/conversations/utils/UIHelper.java b/src/eu/siacs/conversations/utils/UIHelper.java index 97accb58..5493e4ec 100644 --- a/src/eu/siacs/conversations/utils/UIHelper.java +++ b/src/eu/siacs/conversations/utils/UIHelper.java @@ -69,7 +69,7 @@ public class UIHelper { } else if (difference < 60 * 15) { return context.getString(R.string.minutes_ago, Math.round(difference / 60.0)); - } else if (today(date) || difference < 12 * 60 * 60) { + } else if (today(date) || difference < 6 * 60 * 60) { java.text.DateFormat df = DateFormat.getTimeFormat(context); return df.format(date); } else { |