mirror of
https://github.com/friendica/friendica
synced 2025-04-29 13:44:23 +02:00
Enable communication with Peertube
This commit is contained in:
parent
2f427e9daa
commit
aa4aaf1971
3 changed files with 10 additions and 7 deletions
|
@ -1156,7 +1156,7 @@ class Transmitter
|
|||
'actor' => $owner['url'],
|
||||
'object' => $profile['url'],
|
||||
'instrument' => ['type' => 'Service', 'name' => BaseObject::getApp()->getUserAgent()],
|
||||
'to' => $profile['url']];
|
||||
'to' => [$profile['url']]];
|
||||
|
||||
Logger::log('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid, Logger::DEBUG);
|
||||
|
||||
|
@ -1184,7 +1184,7 @@ class Transmitter
|
|||
'actor' => $profile['url'],
|
||||
'object' => $owner['url']],
|
||||
'instrument' => ['type' => 'Service', 'name' => BaseObject::getApp()->getUserAgent()],
|
||||
'to' => $profile['url']];
|
||||
'to' => [$profile['url']]];
|
||||
|
||||
Logger::log('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id, Logger::DEBUG);
|
||||
|
||||
|
@ -1212,7 +1212,7 @@ class Transmitter
|
|||
'actor' => $profile['url'],
|
||||
'object' => $owner['url']],
|
||||
'instrument' => ['type' => 'Service', 'name' => BaseObject::getApp()->getUserAgent()],
|
||||
'to' => $profile['url']];
|
||||
'to' => [$profile['url']]];
|
||||
|
||||
Logger::log('Sending reject to ' . $target . ' for user ' . $uid . ' with id ' . $id, Logger::DEBUG);
|
||||
|
||||
|
@ -1247,7 +1247,7 @@ class Transmitter
|
|||
'actor' => $owner['url'],
|
||||
'object' => $profile['url']],
|
||||
'instrument' => ['type' => 'Service', 'name' => BaseObject::getApp()->getUserAgent()],
|
||||
'to' => $profile['url']];
|
||||
'to' => [$profile['url']]];
|
||||
|
||||
Logger::log('Sending undo to ' . $target . ' for user ' . $uid . ' with id ' . $id, Logger::DEBUG);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue