Skip to content

Commit

Permalink
Fix Recommender (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobkoerber authored Oct 13, 2023
1 parent 39857ff commit b26144e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ class TimeStrategy implements WidgetRecommenderStrategy {
}

// The menu is not interesting anymore after the cafeteria has closed.
/*if (14 <= currentDate.hour) {
if (15 <= currentDate.hour) {
priority = 0;
break;
}*/
}

// The menu might be interesting before the opening hours.
if (currentDate.hour < 14 && 6 < currentDate.hour) {
Expand Down

0 comments on commit b26144e

Please sign in to comment.