From acf3229f3f8d99b8db850c01c720b80785fab166 Mon Sep 17 00:00:00 2001 From: aminovfariz Date: Fri, 5 Jun 2026 14:43:52 +0200 Subject: [PATCH] fix(tests): replace appLogoUrlAbsolute with resolveAppUrl in auth services --- core/Service/Auth/EmailVerificationService.php | 2 +- core/Service/Auth/PasswordResetService.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Service/Auth/EmailVerificationService.php b/core/Service/Auth/EmailVerificationService.php index 05ef3de..1d1f2ba 100644 --- a/core/Service/Auth/EmailVerificationService.php +++ b/core/Service/Auth/EmailVerificationService.php @@ -78,7 +78,7 @@ class EmailVerificationService $vars = [ 'app_name' => $this->resolveAppTitle(), - 'app_logo_url' => appLogoUrlAbsolute(128), + 'app_logo_url' => $this->resolveAppUrl(appLogoUrl(128)), 'imprint_url' => $this->resolveAppUrl(Request::withLocale('imprint', $locale)), 'privacy_url' => $this->resolveAppUrl(Request::withLocale('privacy', $locale)), 'code' => $code, diff --git a/core/Service/Auth/PasswordResetService.php b/core/Service/Auth/PasswordResetService.php index ef5dde5..e52d581 100644 --- a/core/Service/Auth/PasswordResetService.php +++ b/core/Service/Auth/PasswordResetService.php @@ -81,7 +81,7 @@ class PasswordResetService $vars = [ 'app_name' => $this->resolveAppTitle(), - 'app_logo_url' => appLogoUrlAbsolute(128), + 'app_logo_url' => $this->resolveAppUrl(appLogoUrl(128)), 'imprint_url' => $this->resolveAppUrl(Request::withLocale('imprint', $locale)), 'privacy_url' => $this->resolveAppUrl(Request::withLocale('privacy', $locale)), 'code' => $code,