mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Merge pull request #12882 from MrPetovan/bug/baseurl-no-string
Cast the base URL as string in /friendica/json
This commit is contained in:
commit
4273c6d130
1 changed files with 1 additions and 1 deletions
|
@ -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)),
|
||||
|
|
Loading…
Reference in a new issue