mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-04-03 17:38:08 +02:00
Adjusting default zaps for the Zap the Devs button
This commit is contained in:
parent
372eaabb50
commit
39c9b4d50f
@ -491,7 +491,7 @@ fun customZapClick(
|
||||
} else if (accountViewModel.account.zapAmountChoices.size == 1) {
|
||||
val amount = accountViewModel.account.zapAmountChoices.first()
|
||||
|
||||
if (amount > 600) {
|
||||
if (amount > 1100) {
|
||||
accountViewModel.zap(
|
||||
baseNote,
|
||||
amount * 1000,
|
||||
@ -509,7 +509,7 @@ fun customZapClick(
|
||||
// recommends amounts for a monthly release.
|
||||
}
|
||||
} else if (accountViewModel.account.zapAmountChoices.size > 1) {
|
||||
if (accountViewModel.account.zapAmountChoices.any { it > 600 }) {
|
||||
if (accountViewModel.account.zapAmountChoices.any { it > 1100 }) {
|
||||
onMultipleChoices(accountViewModel.account.zapAmountChoices)
|
||||
} else {
|
||||
onMultipleChoices(listOf(1000L, 5_000L, 10_000L))
|
||||
|
Loading…
x
Reference in New Issue
Block a user