Fix ignored get method for user interaction (#26)

This commit is contained in:
vitaxa 2022-04-29 14:38:21 +03:00 committed by GitHub
parent 2a3c3c7e55
commit 08dbf8ed2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
</parent> </parent>
<artifactId>adapter-flow-lib</artifactId> <artifactId>adapter-flow-lib</artifactId>
<version>0.1.2</version> <version>0.1.3</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>adapter-flow-lib</name> <name>adapter-flow-lib</name>

View File

@ -57,7 +57,7 @@ public class IntentResultFactory {
new SuspendIntent( new SuspendIntent(
tagManagementService.findTag(params), tagManagementService.findTag(params),
Timer.timeout(timerRedirectTimeout) Timer.timeout(timerRedirectTimeout)
).setUserInteraction(createPostUserInteraction(threeDsData.getAcsUrl(), params)) ).setUserInteraction(createUserInteraction(threeDsData))
); );
} }