extend URL validation

this code is currently dead, but improving it should it become live
pull/1120/head
Hawkheart committed by GitHub
parent 0ba1a820c0
commit 88d2488d08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -186,6 +186,11 @@ class RemoteFollowImportRecent implements ShouldQueue
Log::info('Invalid media, skipping. '.$mime);
continue;
}
if (Helpers::validateUrl($url) == false) {
Log::info('Skipping invalid attachment URL: ' . $url);
continue;
}
$count++;
if ($count === 1) {

Loading…
Cancel
Save