From c5f4f9429654f842af9e40866235a4d8fa3118ee Mon Sep 17 00:00:00 2001 From: "massimiliano.assante" Date: Thu, 15 Oct 2015 10:09:30 +0000 Subject: [PATCH] added attachment notice git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/application-support-layer/applicationSupportLayerSocial@119787 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../social/ApplicationNotificationsManager.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/gcube/applicationsupportlayer/social/ApplicationNotificationsManager.java b/src/main/java/org/gcube/applicationsupportlayer/social/ApplicationNotificationsManager.java index f92276d..91b34a4 100644 --- a/src/main/java/org/gcube/applicationsupportlayer/social/ApplicationNotificationsManager.java +++ b/src/main/java/org/gcube/applicationsupportlayer/social/ApplicationNotificationsManager.java @@ -433,10 +433,11 @@ public class ApplicationNotificationsManager extends SocialPortalBridge implemen if (otherRecipientsFullNames != null && otherRecipientsFullNames.length > 0) { otherRecipientNames = "
- This message was also sent to:
If you reply, your message will be also delivered to them.
"; + otherRecipientNames += "
If you reply, your message will be also delivered to them.
"; } + String attachmentsNotice = "
Please note that email replies do not support attachments.
"; Notification not = new Notification( UUID.randomUUID().toString(), @@ -448,7 +449,7 @@ public class ApplicationNotificationsManager extends SocialPortalBridge implemen "sent you a message: " + "
" + messageText +"
" - + otherRecipientNames, + + otherRecipientNames + attachmentsNotice, false, aslSession.getUsername(), aslSession.getUserFullName(),