minor fixes

This commit is contained in:
David Bomba 2021-06-29 17:26:21 +10:00
parent ac842d0d83
commit 8e43eaa99d
3 changed files with 2 additions and 4 deletions

View File

@ -320,8 +320,6 @@ class PaymentController extends Controller
*/
public function credit_response(Request $request)
{
nlog("credit response");
nlog($request->all());
$payment_hash = PaymentHash::whereRaw('BINARY `hash`= ?', [$request->input('payment_hash')])->first();

View File

@ -522,7 +522,7 @@ class SubscriptionService
*/
private function handlePlanChange($payment_hash)
{
nlog("handle plan change");
$old_recurring_invoice = RecurringInvoice::find($payment_hash->data->billing_context->recurring_invoice);
$recurring_invoice = $this->createNewRecurringInvoice($old_recurring_invoice);

View File

@ -15,7 +15,7 @@ return [
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => '5.2.7',
'app_tag' => '5.2.7-release',
'app_tag' => '5.2.7',
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', ''),