mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-14 13:17:08 +02:00
Fixed withdrawal button for credits with minimal amount.
This commit is contained in:
parent
cad25ae644
commit
ffa4b1db87
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ void InnerWidget::fill() {
|
|||
.creditsAmount = [=, show = _controller->uiShow()] {
|
||||
const auto amount = input->getLastText().toULongLong();
|
||||
const auto min = float64(WithdrawalMin(session));
|
||||
if (amount <= min) {
|
||||
if (amount < min) {
|
||||
auto text = tr::lng_bot_earn_credits_out_minimal(
|
||||
tr::now,
|
||||
lt_link,
|
||||
|
|
Loading…
Add table
Reference in a new issue