commit 01a80286434f6815fe23a6e13d3e732271b78d9c
parent 1b0b2cca079247ebfe6235de0c230bac47604b1a
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 2 Oct 2019 12:33:02 +0200
fix field name
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/main/kotlin/tech/libeufin/Main.kt b/src/main/kotlin/tech/libeufin/Main.kt
@@ -121,7 +121,7 @@ fun main() {
val customer = BankCustomer.findById(id) ?: return@transaction null
CustomerInfo(
customer.name,
- customerEbicsInfo = CustomerEbicsInfo(
+ ebicsInfo = CustomerEbicsInfo(
customer.ebicsSubscriber.userId.id.value
)
)
@@ -219,4 +219,4 @@ fun main() {
}
}
server.start(wait = true)
-}
-\ No newline at end of file
+}