Skip to content

Commit

Permalink
undo weird autoformatter decision
Browse files Browse the repository at this point in the history
  • Loading branch information
jklein24 committed Sep 21, 2024
1 parent 7eb03e6 commit e4444a4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions uma-sdk/src/commonMain/kotlin/me/uma/protocol/LnurlpRequest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ data class LnurlpRequest(
host = receiverAddressParts[1],
pathSegments = "/.well-known/lnurlp/${receiverAddressParts[0]}".split("/"),
parameters =
Parameters.build {
vaspDomain?.let { append("vaspDomain", it) }
nonce?.let { append("nonce", it) }
signature?.let { append("signature", it) }
umaVersion?.let { append("umaVersion", it) }
timestamp?.let { append("timestamp", it.toString()) }
isSubjectToTravelRule?.let { append("isSubjectToTravelRule", it.toString()) }
},
Parameters.build {
vaspDomain?.let { append("vaspDomain", it) }
nonce?.let { append("nonce", it) }
signature?.let { append("signature", it) }
umaVersion?.let { append("umaVersion", it) }
timestamp?.let { append("timestamp", it.toString()) }
isSubjectToTravelRule?.let { append("isSubjectToTravelRule", it.toString()) }
},
).build()
return url.toString()
}
Expand Down

0 comments on commit e4444a4

Please sign in to comment.