Merge pull request #35586 from J0WI/public.systemvalue

Replace getSystemValue with getSystemValueString in Util.php
This commit is contained in:
Simon L 2022-12-07 23:49:01 +01:00 коммит произвёл GitHub
Родитель 87e638b1f8 fc97f6847d
Коммит 65988beaf0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -323,11 +323,11 @@ class Util {
* is passed to this function
* @since 5.0.0
*/
public static function getDefaultEmailAddress($user_part) {
public static function getDefaultEmailAddress(string $user_part): string {
$config = \OC::$server->getConfig();
$user_part = $config->getSystemValue('mail_from_address', $user_part);
$user_part = $config->getSystemValueString('mail_from_address', $user_part);
$host_name = self::getServerHostName();
$host_name = $config->getSystemValue('mail_domain', $host_name);
$host_name = $config->getSystemValueString('mail_domain', $host_name);
$defaultEmailAddress = $user_part.'@'.$host_name;
$mailer = \OC::$server->getMailer();