mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
Update HandleUpdateActivity
This commit is contained in:
parent
e8d4ce1888
commit
e3be04db2b
1 changed files with 3 additions and 2 deletions
|
@ -64,6 +64,9 @@ class RemoteAvatarFetchFromUrl implements ShouldQueue
|
||||||
{
|
{
|
||||||
$profile = $this->profile;
|
$profile = $this->profile;
|
||||||
|
|
||||||
|
Cache::forget('avatar:' . $profile->id);
|
||||||
|
AccountService::del($profile->id);
|
||||||
|
|
||||||
if(boolval(config_cache('pixelfed.cloud_storage')) == false && boolval(config_cache('federation.avatars.store_local')) == false) {
|
if(boolval(config_cache('pixelfed.cloud_storage')) == false && boolval(config_cache('federation.avatars.store_local')) == false) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -86,8 +89,6 @@ class RemoteAvatarFetchFromUrl implements ShouldQueue
|
||||||
$avatar->save();
|
$avatar->save();
|
||||||
}
|
}
|
||||||
|
|
||||||
Cache::forget('avatar:' . $avatar->profile_id);
|
|
||||||
AccountService::del($avatar->profile_id);
|
|
||||||
|
|
||||||
MediaStorageService::avatar($avatar, boolval(config_cache('pixelfed.cloud_storage')) == false, true);
|
MediaStorageService::avatar($avatar, boolval(config_cache('pixelfed.cloud_storage')) == false, true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue