From 84d1dc5ce18de3bff08f90128e5b11ba31507485 Mon Sep 17 00:00:00 2001 From: Costantino Perciante Date: Wed, 24 Feb 2016 10:09:44 +0000 Subject: [PATCH] Update method notifyUsersInvolved to reflect updates in the applicationSupportLayerSocial and notifications-common-library. Version updated to 1.3.1 git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portal/social-mail-servlet@124529 82a268e6-3cf1-43bd-a215-b396298e98cf --- pom.xml | 2 +- src/main/java/org/gcube/portal/socialmail/PeriodicTask.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 5a1424a..68947d3 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ org.gcube.portal social-mail-servlet war - 1.3.0-SNAPSHOT + 1.3.1-SNAPSHOT social-mail-servlet Webapp This component read periodically email replies from user wanting to reply to a post via email diff --git a/src/main/java/org/gcube/portal/socialmail/PeriodicTask.java b/src/main/java/org/gcube/portal/socialmail/PeriodicTask.java index 869b0d9..ba3f558 100644 --- a/src/main/java/org/gcube/portal/socialmail/PeriodicTask.java +++ b/src/main/java/org/gcube/portal/socialmail/PeriodicTask.java @@ -400,17 +400,17 @@ public class PeriodicTask implements Runnable { //if the user who commented this post is not the user who posted it notifies the poster user (Feed owner) NotificationsManager nm = new ApplicationNotificationsManager(fakeSession); if (! fakeSession.getUsername().equals(feedOwnerId) && (!isAppFeed)) { - boolean result = nm.notifyOwnCommentReply(feedOwnerId, feedId, commentText); + boolean result = nm.notifyOwnCommentReply(feedOwnerId, feedId, commentText, comment.getKey()); _log.trace("Comment Notification to post owner added? " + result); } //if there are users who liked this post they get notified, asynchronously with this thread ArrayList favorites = getAllLikesByFeed(feedId); - Thread likesThread = new Thread(new LikeNotificationsThread(commentText, nm, favorites, feedOwnerId)); + Thread likesThread = new Thread(new LikeNotificationsThread(commentText, nm, favorites, feedOwnerId, comment.getKey())); likesThread.start(); //notify the other users who commented this post (excluding the ones above) - Thread commentsNotificationthread = new Thread(new CommentNotificationsThread(socialStore, fakeSession.getUsername(), comment.getFeedid(), commentText, nm, feedOwnerId, favorites)); + Thread commentsNotificationthread = new Thread(new CommentNotificationsThread(socialStore, fakeSession.getUsername(), comment.getFeedid(), commentText, nm, feedOwnerId, comment.getKey(), favorites)); commentsNotificationthread.start(); } /**