We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b43452 commit cc10033Copy full SHA for cc10033
app/src/main/java/to/bitkit/viewmodels/AppViewModel.kt
@@ -501,7 +501,10 @@ class AppViewModel @Inject constructor(
501
}
502
503
private fun attachTagsToActivity(paymentHashOrTxId: String?, type: ActivityFilter) {
504
- if (_sendUiState.value.selectedTags.isEmpty()) return
+ if (_sendUiState.value.selectedTags.isEmpty()) {
505
+ Logger.debug("selectedTags empty")
506
+ return
507
+ }
508
509
if (paymentHashOrTxId == null) {
510
Logger.error(msg = "null paymentHashOrTxId")
0 commit comments