From d3c261b75039b0ea4e6edfdcdbd074dfd3562f0e Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Tue, 5 Mar 2024 15:33:02 +0100 Subject: [PATCH] [Fix] Fixed action name in NotificationResource --- .../java/li/strolch/rest/endpoint/NotificationResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-rest/src/main/java/li/strolch/rest/endpoint/NotificationResource.java b/web-rest/src/main/java/li/strolch/rest/endpoint/NotificationResource.java index 53ec9e315..09a8fa165 100644 --- a/web-rest/src/main/java/li/strolch/rest/endpoint/NotificationResource.java +++ b/web-rest/src/main/java/li/strolch/rest/endpoint/NotificationResource.java @@ -75,7 +75,7 @@ public class NotificationResource { String realm = certificate.getRealm(); if (StringHelper.isEmpty(realm)) realm = DEFAULT_REALM; - return RestfulStrolchComponent.getInstance().openTx(certificate, realm, getCallerMethod()); + return RestfulStrolchComponent.getInstance().openTx(certificate, realm, getCallerMethod(2)); } private static Certificate validateCertificate(HttpServletRequest request, String privilege) {