Tweaked the absoluteDateTimeReveal() method so that the date and time format match that of focussed toots. I now use the dateDiffFull() method so that any future changes to that will be matched here.

This commit is contained in:
PhotonQyv 2018-06-09 19:23:56 +01:00
parent 2879b1d4c6
commit 50cdd94240
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ public class Helper {
@Override
public void onClick(View v) {
tvDate.setText(Helper.shortDateTime(context, date));
tvDate.setText(Helper.dateDiffFull(date));
new CountDownTimer((5 * 1000), 1000) {