Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 0eb3db7

Browse files
committed
Fixed wrong ID being returned
1 parent 5e421c0 commit 0eb3db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javasource/webviewer/actions/SaveDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public java.lang.String executeAction() throws Exception
4242
// With the file ID we got from the request, create an identifier object
4343
IMendixIdentifier id = this.fileData.getMendixObject().getId();
4444

45-
return id.toString();
45+
return String.valueOf(id.toLong());
4646
// END USER CODE
4747
}
4848

0 commit comments

Comments
 (0)