We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21319f9 commit 43371b6Copy full SHA for 43371b6
1 file changed
src/main/java/edu/tamu/app/controller/NotificationController.java
@@ -68,7 +68,7 @@ public ApiResponse remove(@ApiValidatedModel Notification notification) {
68
@SkipAop
69
@RequestMapping("/notification/active")
70
public String getActiveNotifications(@RequestParam(value = "location", defaultValue = "ALL") String location) {
71
- return buildNotificationHtml(notificationRepo.activeNotificationsByLocation(location.toLowerCase()));
+ return buildNotificationHtml(notificationRepo.activeNotificationsByLocation(location.toUpperCase()));
72
}
73
74
private String buildNotificationHtml(List<Notification> notifications) {
0 commit comments