Index: lams_common/src/java/org/lamsfoundation/lams/events/EventNotificationService.java =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/events/EventNotificationService.java,v diff -u -r1.8 -r1.9 --- lams_common/src/java/org/lamsfoundation/lams/events/EventNotificationService.java 5 May 2016 08:11:39 -0000 1.8 +++ lams_common/src/java/org/lamsfoundation/lams/events/EventNotificationService.java 20 Sep 2016 08:00:09 -0000 1.9 @@ -205,7 +205,7 @@ boolean isSubscribed = false; if (event != null) { for (Subscription subscription : event.getSubscriptions()) { - if (subscription.getUserId().equals(userId)) { + if (subscription.getUserId().equals(Integer.valueOf(userId.intValue()))) { isSubscribed = true; break; } @@ -653,4 +653,4 @@ protected ILamsToolService getToolService() { return toolService; } -} \ No newline at end of file +}