Update CloudMediaMigrate command

pull/3960/head
Daniel Supernault 2 years ago
parent 175630d9b4
commit fe76e709be
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -8,6 +8,7 @@ use App\Services\MediaStorageService;
use App\Util\Lexer\PrettyNumber;
use Illuminate\Support\Facades\Storage;
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class CloudMediaMigrate extends Command
{
@ -66,6 +67,8 @@ class CloudMediaMigrate extends Command
MediaStorageService::store($media);
} catch (FileNotFoundException $e) {
return;
} catch (NotFoundHttpException $e) {
return;
} catch (Exception $e) {
return;
}

Loading…
Cancel
Save