Skip to content

Commit

Permalink
multibanking 3.5.43
Browse files Browse the repository at this point in the history
  • Loading branch information
age-77 committed Apr 8, 2022
1 parent fa101aa commit 84c83b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion onlinebanking-hbci4java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dependency>
<groupId>de.adorsys</groupId>
<artifactId>hbci4j-adorsys</artifactId>
<version>3.5.42</version>
<version>3.5.43</version>
<exclusions>
<exclusion>
<groupId>org.projectlombok</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Optional;

public class RawSepaJob extends AbstractPaymentJob<RawSepaPayment> {

Expand All @@ -46,7 +47,8 @@ String getHbciJobName() {

@Override
public String orderIdFromJobResult(HBCIJobResult jobResult) {
return null;
return Optional.ofNullable(jobResult.getResultData().get("orderid"))
.orElse(null);
}

@Override
Expand Down

0 comments on commit 84c83b1

Please sign in to comment.