Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Use correct lable for older history items. Fixes #1824 (#1826)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin authored Sep 12, 2019
1 parent 7265441 commit 4078203
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private void syncHistory() {
addSection(orderedItems, getResources().getString(R.string.history_section_today), currentTime, todayLimit);
addSection(orderedItems, getResources().getString(R.string.history_section_yesterday), todayLimit, yesterdayLimit);
addSection(orderedItems, getResources().getString(R.string.history_section_last_week), yesterdayLimit, oneWeekLimit);
addSection(orderedItems, getResources().getString(R.string.history_section_today), oneWeekLimit, 0);
addSection(orderedItems, getResources().getString(R.string.history_section_older), oneWeekLimit, 0);

showHistory(orderedItems);

Expand Down

0 comments on commit 4078203

Please sign in to comment.