From 346a61d08d1ff77c15e0543045813a8b38be93af Mon Sep 17 00:00:00 2001 From: Josh Young Date: Mon, 27 Apr 2020 10:46:20 +0930 Subject: [PATCH] Fix for Initialized being called as function error --- src/Features/TelescopeTags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/TelescopeTags.php b/src/Features/TelescopeTags.php index fe63ef93..7978214b 100644 --- a/src/Features/TelescopeTags.php +++ b/src/Features/TelescopeTags.php @@ -39,7 +39,7 @@ class TelescopeTags implements Feature || PreventAccessFromTenantDomains::routeHasMiddleware(request()->route(), 'universal'); // Don't do anything if we're visiting a universal route on a central domain - if ($tenantRoute && tenancy()->initialized()) { + if ($tenantRoute && tenancy()->initialized) { $tags = array_merge($tags, [ 'tenant:' . tenant('id'), ]);