Skip to content

Commit

Permalink
Fixed incorrect setting of the number field in the header
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerVoss committed Aug 20, 2024
1 parent 59a1379 commit b77b35a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified SEDAPExpress/dist/SEDAPExpress-v1.0.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ protected StringBuilder serializeHeader() {
StringBuilder result = new StringBuilder(this.getClass().getSimpleName()).append(';');

if (this.number != null) {
result.append(SEDAPExpressMessage.HEXFOMATER.toHexDigits((this.number)));
result.append(SEDAPExpressMessage.HEXFOMATER.toHexDigits((this.number)).substring(2));
}
result.append(';');

Expand Down

0 comments on commit b77b35a

Please sign in to comment.