mirror of
https://github.com/openvk/openvk
synced 2024-11-13 10:39:24 +03:00
фикс дюпа алмазов в служебном апи)
This commit is contained in:
parent
0a4b7225ea
commit
3c632f3910
2 changed files with 7 additions and 0 deletions
|
@ -54,6 +54,11 @@ class Apps implements Handler
|
|||
$reject("No application with this id found");
|
||||
return;
|
||||
}
|
||||
|
||||
if($amount < 0) {
|
||||
$reject(552, "Payment amount is invalid");
|
||||
return;
|
||||
}
|
||||
|
||||
$coinsLeft = $this->user->getCoins() - $amount;
|
||||
if($coinsLeft < 0) {
|
||||
|
|
|
@ -142,6 +142,8 @@ function handlePayment(event) {
|
|||
ok: false,
|
||||
error: "negative sum"
|
||||
}, '*');
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
MessageBox(
|
||||
|
|
Loading…
Reference in a new issue