Merge pull request #12882 from MrPetovan/bug/baseurl-no-string

Cast the base URL as string in /friendica/json
pull/12886/head
Michael Vogel 2023-03-13 06:21:49 +01:00 zatwierdzone przez GitHub
commit 4273c6d130
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -172,7 +172,7 @@ class Friendica extends BaseModule
$data = [
'version' => App::VERSION,
'url' => DI::baseUrl(),
'url' => (string)DI::baseUrl(),
'addons' => $visible_addons,
'locked_features' => $locked_features,
'explicit_content' => intval($config->get('system', 'explicit_content', 0)),