Skip to content
Snippets Groups Projects
Unverified Commit c3154038 authored by lhameury's avatar lhameury
Browse files

Fix counters for mailsec action

parent 8ec30397
No related branches found
No related tags found
No related merge requests found
Pipeline #87771 failed
......@@ -376,15 +376,20 @@ public class MailsecPastellService {
String serverId = payload.getString(SERVER_ID_PAYLOAD);
String mailId = object.getString(DOCUMENT_ID_KEY);
NodeRef parentCourant = null;
NodeRef parentCourant;
if(nodeService.exists(node)) {
parentCourant = nodeService.getPrimaryParent(node).getParentRef();
} else {
parentCourant = null;
}
AuthenticationUtil.runAs(() -> transactionService.getRetryingTransactionHelper().doInTransaction(() -> approveMailsec(annotation, node, user, serverId, mailId)), user);
if(parentCourant != null) {
corbeillesService.moveDossier(node, parentCourant, nodeService.getPrimaryParent(node).getParentRef());
AuthenticationUtil.runAs(() -> transactionService.getRetryingTransactionHelper().doInTransaction(() -> {
corbeillesService.moveDossier(node, parentCourant, nodeService.getPrimaryParent(node).getParentRef());
return null;
}), user);
}
} catch (JSONException | IOException e) {
e.printStackTrace();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment