We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd329a1 commit c0657e4Copy full SHA for c0657e4
app/src/main/java/to/bitkit/viewmodels/AppViewModel.kt
@@ -474,6 +474,11 @@ class AppViewModel @Inject constructor(
474
handleLightningInvoice(invoice = invoice, uri = uri)
475
} else {
476
Logger.error("Error decoding LNURL pay. scan: $scan", context = "AppViewModel")
477
+ toast(
478
+ type = Toast.ToastType.ERROR,
479
+ title = context.getString(R.string.other__scan_err_decoding),
480
+ description = context.getString(R.string.other__scan__error__expired),
481
+ )
482
}
483
}.onFailure { e ->
484
Logger.error("Error decoding LNURL pay", e = e, context = "AppViewModel")
0 commit comments