From 5bea9034096a9645f919d018f0e4f1e96444e750 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 6 Jun 2023 05:47:45 -0600 Subject: [PATCH] Update HandleUpdateActivity --- app/Jobs/ProfilePipeline/HandleUpdateActivity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ProfilePipeline/HandleUpdateActivity.php b/app/Jobs/ProfilePipeline/HandleUpdateActivity.php index 3fe49b3d7..c8816e8a1 100644 --- a/app/Jobs/ProfilePipeline/HandleUpdateActivity.php +++ b/app/Jobs/ProfilePipeline/HandleUpdateActivity.php @@ -83,7 +83,7 @@ class HandleUpdateActivity implements ShouldQueue } if(isset($payload['object']['icon']) && isset($payload['object']['icon']['url'])) { - RemoteAvatarFetch::dispatch($profile, $payload['object']['icon']['url'])->onQueue('low'); + RemoteAvatarFetchFromUrl::dispatch($profile, $payload['object']['icon']['url'])->onQueue('low'); } else { $profile->avatar->update(['remote_url' => null]); Cache::forget('avatar:' . $profile->id);