From 8394b8ac4b1a0d6bbb9c22ae55be9f2d9024d739 Mon Sep 17 00:00:00 2001 From: Shlee Date: Mon, 12 Jan 2026 19:00:58 +0700 Subject: [PATCH] Update ProfileController.php --- app/Http/Controllers/ProfileController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index dbff7a766..7231c519a 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -163,7 +163,7 @@ class ProfileController extends Controller ->first(); } else { return Profile::withTrashed() - ->whereNull('domain') + ->whereNull(['domain', 'status']) ->whereUsername($username) ->first(); }