From f6305ba591a12937924dfd5b76b6f3701f331a1d Mon Sep 17 00:00:00 2001 From: boban Date: Sat, 18 Oct 2025 18:51:34 +0200 Subject: [PATCH] Domain Create Modal anpassen Fehler auf Null --- app/Services/DkimService.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Services/DkimService.php b/app/Services/DkimService.php index 444ce96..f1ae295 100644 --- a/app/Services/DkimService.php +++ b/app/Services/DkimService.php @@ -113,8 +113,8 @@ class DkimService } return [ 'selector' => $selKey, - 'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel), - 'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel), + 'priv_path' => $disk->path($privRel), + 'pub_path' => $disk->path($pubRel), 'public_pem' => $publicKeyPem, 'private_pem' => $privateKey, 'dns_name' => "{$selKey}._domainkey", @@ -158,8 +158,8 @@ class DkimService return [ 'selector' => $selKey, - 'priv_path' => method_exists($disk,'path') ? $disk->path($privRel) : storage_path('app/'.$privRel), - 'pub_path' => method_exists($disk,'path') ? $disk->path($pubRel) : storage_path('app/'.$pubRel), + 'priv_path' => $disk->path($privRel), + 'pub_path' => $disk->path($pubRel), 'public_pem' => $publicKeyPem, 'private_pem' => $privateKey, 'dns_name' => "{$selKey}._domainkey",