Skip to content

Commit

Permalink
Really need coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
louietyj committed Nov 5, 2016
1 parent 143a96f commit 9d76137
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ public static boolean[] parseIsTaskEvent(Map<String, String[]> parsedResult) thr
return new boolean[] { true, true };
} else if (eventStatusPresent && !taskStatusPresent) {
// Condition 2 - Task
return new boolean[] { true, false };
return new boolean[] { false, true };
} else if (taskStatusPresent && !eventStatusPresent) {
// Condition 2 - Event
return new boolean[] { false, true };
return new boolean[] { true, false };
}
} else {
if (eventType.equals("task") && !eventStatusPresent) {
Expand Down

0 comments on commit 9d76137

Please sign in to comment.