Skip to content

Commit

Permalink
Temporary fix for day of week issue
Browse files Browse the repository at this point in the history
Keeps switching based on Locale.. best solution is to use
JODA time but too much effort for little payoff. If it can't be
calculated, it will be left as blank
  • Loading branch information
ObjectiveTruth committed Oct 22, 2016
1 parent b018c6a commit 75ac2c6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions app/src/main/assets/whatsnew_minor.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
September 2, 2016
===
‣ Booking from the calendar works
‣ Joining from the calendar works
‣ Leaving from the calendar works
‣ If you're not logged in, it will ask you to

August 14, 2016
===
‣ Scrolling downwards on the grid no longer randomly triggers pull to refresh
Expand Down
7 changes: 2 additions & 5 deletions app/src/main/assets/whatsnew_thisversion.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
September 2, 2016
October 22, 2016
===
‣ Booking from the calendar works
‣ Joining from the calendar works
‣ Leaving from the calendar works
‣ If you're not logged in, it will ask you to
‣ Fixed issue with date not being available which crashed the app
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ private String _getDayOfWeekFromCalendarDataAtPosition(CalendarData calendarData
} catch (ParseException e) {
Timber.e(e, "Couldn't parse the string for the date. Got: " + parseMe);
return "";
} catch (ArrayIndexOutOfBoundsException e) {
Timber.w(e, "Day of week was not in the expected range");
return "";
}
}

Expand Down

0 comments on commit 75ac2c6

Please sign in to comment.