1
0
Fork 0

Merge pull request #1120 from Hawkheart/patch-1

extend URL validation
This commit is contained in:
daniel 2019-04-04 12:17:28 -06:00 committed by GitHub
commit 1347bb618d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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) {