From 1dcd2fcdf6fed7429cd8fa01f1fbec4889750d99 Mon Sep 17 00:00:00 2001 From: xboard Date: Tue, 24 Jun 2025 02:00:12 +0800 Subject: [PATCH] remove: disable traffic package stacking feature --- app/Services/OrderService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/OrderService.php b/app/Services/OrderService.php index 26add8e..29865a3 100644 --- a/app/Services/OrderService.php +++ b/app/Services/OrderService.php @@ -306,7 +306,7 @@ class OrderService private function buyByOneTime(Plan $plan) { $this->buyByResetTraffic(); - $this->user->transfer_enable += $plan->transfer_enable * 1073741824; + $this->user->transfer_enable = $plan->transfer_enable * 1073741824; $this->user->plan_id = $plan->id; $this->user->group_id = $plan->group_id; $this->user->expired_at = NULL;