Fix payout

This commit is contained in:
ptibogxiv 2018-11-01 20:45:08 +01:00 committed by GitHub
parent 1140735554
commit 263e8ed4af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,6 +66,7 @@ else {
$servicestatus = 1;
}
}
$payload = @file_get_contents("php://input");
$sig_header = $_SERVER["HTTP_STRIPE_SIGNATURE"];
$event = null;
@ -159,7 +160,7 @@ elseif ($event->type == 'payout.paid') {
$accountfrom->fetch($conf->global->STRIPE_BANK_ACCOUNT_FOR_PAYMENTS);
$accountto=new Account($db);
$accountto->fetch($conf->global->STRIPE_BANK_ACCOUNT_FOR_BANKTRANFERS);
$accountto->fetch($conf->global->STRIPE_BANK_ACCOUNT_FOR_BANKTRANSFERS);
if ($accountto->currency_code != $accountfrom->currency_code) {
$error++;
@ -353,4 +354,3 @@ elseif ($event->type == 'customer.deleted') {
$db->query($sql);
$db->commit();
}