Skip to content

Commit 8f61f73

Browse files
sonar fix
1 parent e7a7651 commit 8f61f73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdm/src/main/java/com/sap/cds/sdm/service/handler/SDMServiceGenericHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public SDMServiceGenericHandler(RegisterService attachmentService) {
2020

2121
@On(event = "copyAttachments")
2222
public void copyAttachments(EventContext context) throws IOException {
23-
String upID = context.get("upID").toString();
23+
String upID = context.get("up__ID").toString();
2424
String objectIdsString = context.get("objectIds").toString();
2525
List<String> objectIds = Arrays.stream(objectIdsString.split(",")).map(String::trim).toList();
2626
var copyEventInput =

0 commit comments

Comments
 (0)