mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update Inbox worker
This commit is contained in:
parent
f059d2fdd1
commit
310b0e58a1
1 changed files with 3 additions and 3 deletions
|
@ -194,9 +194,9 @@ class Inbox
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
$follower = new Follower;
|
$follower = new Follower;
|
||||||
$follower->profile_id => $actor->id;
|
$follower->profile_id = $actor->id;
|
||||||
$follower->following_id => $target->id;
|
$follower->following_id = $target->id;
|
||||||
$follower->local_profile => empty($actor->domain);
|
$follower->local_profile = empty($actor->domain);
|
||||||
|
|
||||||
if($target->domain == null) {
|
if($target->domain == null) {
|
||||||
Notification::firstOrCreate([
|
Notification::firstOrCreate([
|
||||||
|
|
Loading…
Reference in a new issue