Skip to content

Commit

Permalink
fix: Show Date on Status when time is 24 hr format
Browse files Browse the repository at this point in the history
Closes #414
  • Loading branch information
barbeau committed Jun 26, 2020
1 parent 8c7dd08 commit 0629fe6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class GpsStatusFragment extends Fragment implements GpsTestListener {

SimpleDateFormat mTimeAndDateFormat = new SimpleDateFormat(
DateFormat.is24HourFormat(Application.get().getApplicationContext())
? "HH:mm:ss" : "hh:mm:ss a MMM d, yyyy z");
? "HH:mm:ss MMM d, yyyy z" : "hh:mm:ss a MMM d, yyyy z");

private Resources mRes;

Expand Down

0 comments on commit 0629fe6

Please sign in to comment.