Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/5.4-MAINT' into rhialto/5.4-MAINT
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhialto committed Jan 8, 2018
2 parents d348b3e + 6e392f6 commit f19041c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions k9mail/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ android {
applicationId "com.fsck.k9"
testApplicationId "com.fsck.k9.tests"

versionCode 23620
versionName '5.402'
versionCode 23630
versionName '5.403'

minSdkVersion 15
targetSdkVersion 22
Expand Down
2 changes: 1 addition & 1 deletion k9mail/src/main/java/com/fsck/k9/K9.java
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ public static boolean isQuietTime() {
Integer endHour = Integer.parseInt(mQuietTimeEnds.split(":")[0]);
Integer endMinute = Integer.parseInt(mQuietTimeEnds.split(":")[1]);

Integer now = (gregorianCalendar.get(Calendar.HOUR) * 60) + gregorianCalendar.get(Calendar.MINUTE);
Integer now = (gregorianCalendar.get(Calendar.HOUR_OF_DAY) * 60) + gregorianCalendar.get(Calendar.MINUTE);
Integer quietStarts = startHour * 60 + startMinute;
Integer quietEnds = endHour * 60 + endMinute;

Expand Down
3 changes: 3 additions & 0 deletions k9mail/src/main/res/xml/changelog_master.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
Locale specific versions are kept in res/xml-<locale qualifier>/changelog.xml.
-->
<changelog>
<release version="5.403" versioncode="23630">
<change>Fixed bug that caused 'Quiet Time' to behave erratically</change>
</release>
<release version="5.402" versioncode="23620">
<change>Fixed display issues with certain messages</change>
</release>
Expand Down

0 comments on commit f19041c

Please sign in to comment.