Skip to content

Commit

Permalink
Merge pull request #762 from owlchester/sub-to-owlbear-yearly
Browse files Browse the repository at this point in the history
Fixed visual bug
  • Loading branch information
ilestis authored Nov 2, 2023
2 parents d041965 + 683fa4b commit 75c9986
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/Services/SubscriptionUpgradeService.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ public function upgradePrice(string $period, string $tier): string
if ($period == 'monthly') {
$price = "25.00";
}
} elseif ($tier === 'Owlbear') {
$price = "55.00";
if ($period == 'monthly') {
$price = "5.00";
}
}

if (!$this->user->isSubscriber()) {
Expand Down

0 comments on commit 75c9986

Please sign in to comment.