From c3b1c8ab5372609a48e8f26eefe4d766c72ad9b3 Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Mon, 9 May 2022 12:34:25 +0200 Subject: [PATCH] fixed check --- .../portal/social/networking/ws/methods/v2/Notifications.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/portal/social/networking/ws/methods/v2/Notifications.java b/src/main/java/org/gcube/portal/social/networking/ws/methods/v2/Notifications.java index c22a2da..61fc7fe 100644 --- a/src/main/java/org/gcube/portal/social/networking/ws/methods/v2/Notifications.java +++ b/src/main/java/org/gcube/portal/social/networking/ws/methods/v2/Notifications.java @@ -346,7 +346,7 @@ public class Notifications { status = Status.NOT_ACCEPTABLE; logger.error("Username not found", e); responseBean.setSuccess(false); - responseBean.setMessage("Username not found " + userIdToNotify); + responseBean.setMessage("Username not found, received: " + userIdToNotify); return Response.status(status).entity(responseBean).build(); } deliveryResult = notifyWorkspaceEvent(event, nm, username2Notify);