diff --git a/src/Storage/DBFile.php b/src/Storage/DBFile.php index 4c397d6f..5ea53c00 100644 --- a/src/Storage/DBFile.php +++ b/src/Storage/DBFile.php @@ -455,7 +455,7 @@ protected function isValidFilename(string $filename): bool protected function assertFilenameValid(string $filename): void { $result = new ValidationResult(); - $this->validate($result, $filename); + $this->validateFilename($result, $filename); if (!$result->isValid()) { throw new ValidationException($result); }