Fix error message when parsing LnInvoice

This commit is contained in:
Vitor Pamplona 2023-11-09 14:07:50 -05:00
parent 5493ce0dcf
commit 57d97447f4

View File

@ -49,7 +49,7 @@ class LnZapEvent(
try {
lnInvoice()?.let { LnInvoiceUtil.getAmountInSats(it) }
} catch (e: Exception) {
Log.e("LnZapEvent", "Failed to Parse LnInvoice ${description()}", e)
Log.e("LnZapEvent", "Failed to Parse LnInvoice ${lnInvoice()}", e)
null
}
}