From 24168ab6791f2702a68d3eac94aed4e8365dd8b6 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 15 Mar 2023 17:59:46 +1100 Subject: [PATCH] Minor fixes --- app/Listeners/Subscription/PlayStoreRenewSubscription.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Listeners/Subscription/PlayStoreRenewSubscription.php b/app/Listeners/Subscription/PlayStoreRenewSubscription.php index 49ec9805d6fc..d03b7111ec9c 100644 --- a/app/Listeners/Subscription/PlayStoreRenewSubscription.php +++ b/app/Listeners/Subscription/PlayStoreRenewSubscription.php @@ -32,7 +32,7 @@ class PlayStoreRenewSubscription implements ShouldQueue $expirationTime = $event->getSubscription()->getExpiryTime(); - $account = Account::where('inapp_transaction_id', $in_app_identifier)->first(); + $account = Account::where('inapp_transaction_id', 'like', $in_app_identifier."%")->first(); if ($account) { $account->update(['plan_expires' => Carbon::parse($expirationTime)]);