From 5476ac27b671e51aceb51e4574b70730f7f0f2f3 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 29 Nov 2021 00:51:51 -0300 Subject: show 'accept tos' when there is no ToS --- wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt') diff --git a/wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt b/wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt index b198478..64dff8a 100644 --- a/wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt +++ b/wallet/src/main/java/net/taler/wallet/withdraw/TosSection.kt @@ -16,6 +16,7 @@ package net.taler.wallet.withdraw +import android.util.Log import io.noties.markwon.Markwon import kotlinx.serialization.Serializable import org.commonmark.node.Code @@ -50,7 +51,7 @@ internal fun parseTos(markwon: Markwon, text: String): List { lastHeading = getNodeText(node) if (lastHeading.isBlank()) throw ParseException("Empty heading", 0) } else if (lastHeading == null) { - throw ParseException("Found text before first primary heading", 0) + throw ParseException("The exchange ToS does not follow the correct format", 0) } else { section.appendChild(node) } @@ -77,6 +78,6 @@ private fun getNodeText(rootNode: Node): String { @Serializable data class TosResponse( - val tos: String, + val content: String, val currentEtag: String ) -- cgit v1.2.3