mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 16:24:29 +00:00
Update DirectMessageController, add sharedInbox support
This commit is contained in:
parent
bfe2341575
commit
e2e32682fd
1 changed files with 2 additions and 2 deletions
|
@ -704,7 +704,7 @@ class DirectMessageController extends Controller
|
|||
public function remoteDeliver($dm)
|
||||
{
|
||||
$profile = $dm->author;
|
||||
$url = $dm->recipient->inbox_url;
|
||||
$url = $dm->recipient->sharedInbox ?? $dm->recipient->inbox_url;
|
||||
|
||||
$tags = [
|
||||
[
|
||||
|
@ -760,7 +760,7 @@ class DirectMessageController extends Controller
|
|||
public function remoteDelete($dm)
|
||||
{
|
||||
$profile = $dm->author;
|
||||
$url = $dm->recipient->inbox_url;
|
||||
$url = $dm->recipient->sharedInbox ?? $dm->recipient->inbox_url;
|
||||
|
||||
$body = [
|
||||
'@context' => [
|
||||
|
|
Loading…
Reference in a new issue