mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
extend URL validation
this code is currently dead, but improving it should it become live
This commit is contained in:
parent
0ba1a820c0
commit
88d2488d08
1 changed files with 5 additions and 0 deletions
|
@ -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