This commit is contained in:
Andras Bacsai 2023-11-06 13:29:44 +01:00
parent 6203804713
commit 73f3a09157
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
// The release version of your application
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
'release' => '4.0.0-beta.109',
'release' => '4.0.0-beta.110',
// When left empty or `null` the Laravel environment will be used
'environment' => config('app.env'),

View File

@ -1,3 +1,3 @@
<?php
return '4.0.0-beta.109';
return '4.0.0-beta.110';

View File

@ -284,7 +284,7 @@
$customerId = data_get($data, 'customer');
$subscription = Subscription::where('stripe_customer_id', $customerId)->first();
if (!$subscription) {
Sleep::for(5);
Sleep::for(5)->minutes();
$subscription = Subscription::where('stripe_customer_id', $customerId)->firstOrFail();
}
$planId = data_get($data, 'lines.data.0.plan.id');