mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 16:23:16 +00:00
Merge pull request #1123 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
15d4aff821
3 changed files with 10 additions and 1 deletions
|
@ -49,7 +49,7 @@ class FollowActivityPubDeliver implements ShouldQueue
|
||||||
$actor = $follow->actor;
|
$actor = $follow->actor;
|
||||||
$target = $follow->target;
|
$target = $follow->target;
|
||||||
|
|
||||||
if($target->domain == null || $target->inbox_url == null) {
|
if($target->domain == null || $target->inbox_url == null || !$actor->private_key) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,10 @@ class FollowPipeline implements ShouldQueue
|
||||||
$actor = $follower->actor;
|
$actor = $follower->actor;
|
||||||
$target = $follower->target;
|
$target = $follower->target;
|
||||||
|
|
||||||
|
if($target->domain || !$target->private_key) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$notification = new Notification();
|
$notification = new Notification();
|
||||||
$notification->profile_id = $target->id;
|
$notification->profile_id = $target->id;
|
||||||
|
|
|
@ -186,6 +186,11 @@ class RemoteFollowImportRecent implements ShouldQueue
|
||||||
Log::info('Invalid media, skipping. '.$mime);
|
Log::info('Invalid media, skipping. '.$mime);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (Helpers::validateUrl($url) == false) {
|
||||||
|
Log::info('Skipping invalid attachment URL: ' . $url);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$count++;
|
$count++;
|
||||||
|
|
||||||
if ($count === 1) {
|
if ($count === 1) {
|
||||||
|
|
Loading…
Reference in a new issue