mirror of
https://github.com/friendica/friendica
synced 2025-05-10 01:04:09 +02:00
Use similar values for generator and system actor
This commit is contained in:
parent
02d8cc2f71
commit
d7e8ee51ae
2 changed files with 6 additions and 3 deletions
|
@ -322,16 +322,17 @@ class Transmitter
|
|||
}
|
||||
|
||||
/**
|
||||
* Return the service array containing information the used software and it's url
|
||||
* Return the service array containing information the used software and its url
|
||||
*
|
||||
* @return array with service data
|
||||
*/
|
||||
public static function getService(): array
|
||||
{
|
||||
return [
|
||||
'type' => 'Service',
|
||||
'id' => (string)DI::baseUrl() . '/friendica',
|
||||
'type' => 'Application',
|
||||
'name' => App::PLATFORM . " '" . App::CODENAME . "' " . App::VERSION . '-' . DB_UPDATE_VERSION,
|
||||
'url' => (string)DI::baseUrl()
|
||||
'url' => (string)DI::baseUrl(),
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue