Skip to content

Commit

Permalink
Merge pull request #748 from miticdjd/fix/stripe-status-column
Browse files Browse the repository at this point in the history
[10.0] syncStripeStatus trying to update incorrect status column
  • Loading branch information
driesvints authored Aug 15, 2019
2 parents bb01b55 + 4616a43 commit 88f44e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function syncStripeStatus()
{
$subscription = $this->asStripeSubscription();

$this->status = $subscription->status;
$this->stripe_status = $subscription->status;

$this->save();
}
Expand Down

2 comments on commit 88f44e9

@garygreen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any chance of doing a minor release/patch for this? 😃

@driesvints
Copy link
Member Author

@driesvints driesvints commented on 88f44e9 Aug 15, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@garygreen probably just gonna stick to the regular release schedule to not do too much releases for every fix but you can require this by doing composer require laravel/cashier:10.0-dev for now.

Please sign in to comment.