diff --git a/app/Jobs/FollowPipeline/FollowPipeline.php b/app/Jobs/FollowPipeline/FollowPipeline.php index 6d30f0fc2..0df16206a 100644 --- a/app/Jobs/FollowPipeline/FollowPipeline.php +++ b/app/Jobs/FollowPipeline/FollowPipeline.php @@ -92,7 +92,7 @@ class FollowPipeline implements ShouldQueue if (PushNotificationService::check('follow', $target->id)) { $user = User::whereProfileId($target->id)->first(); if ($user && $user->expo_token && $user->notify_enabled) { - FollowPushNotifyPipeline::dispatchSync($user->expo_token, $actor->username); + FollowPushNotifyPipeline::dispatch($user->expo_token, $actor->username)->onQueue('pushnotify'); } } }