Merge pull request #13306 from annando/buffer

Fix v1/instance endpoint to make Buffer work
This commit is contained in:
Hypolite Petovan 2023-07-25 22:20:36 +02:00 committed by GitHub
commit e5b887b462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class Instance extends BaseDataTransferObject
$this->short_description = $this->description = $config->get('config', 'info');
$this->email = implode(',', User::getAdminEmailList());
$this->version = '2.8.0 (compatible; Friendica ' . App::VERSION . ')';
$this->urls = null; // Not supported
$this->urls = ['streaming_api' => '']; // Not supported
$this->stats = new Stats($config, $database);
$this->thumbnail = $baseUrl . $config->get('api', 'mastodon_banner');
$this->languages = [$config->get('system', 'language')];