From 45d2c8dc8e7ac627f06d923235cc6255e3a8fc3f Mon Sep 17 00:00:00 2001 From: "Harry (hjbdev)" Date: Mon, 31 Mar 2025 16:02:12 +0000 Subject: [PATCH] driver name fix --- app/Models/Service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Service.php b/app/Models/Service.php index 174f3f2..6c7718b 100644 --- a/app/Models/Service.php +++ b/app/Models/Service.php @@ -43,7 +43,7 @@ class Service extends Model ?string $defaultPassword = null, ): Driver { - $class = config("keystone.drivers.{$this->driver_name}.{$this->version}"); + $class = config("keystone.drivers.{$this->driver_name}"); if (!class_exists($class)) { throw new \Exception("Driver class {$class} not found"); }