diff --git a/Classes/Bucket/Operations.php b/Classes/Bucket/Operations.php index 2b3ac27..fc6f5bc 100644 --- a/Classes/Bucket/Operations.php +++ b/Classes/Bucket/Operations.php @@ -138,6 +138,7 @@ public function rename($oldName, $newName) */ public function delete($fileIdentifier) { + $fileIdentifier = $this->namingHelper->normalizeFileName($fileIdentifier); if ($this->bucketCache instanceof BucketCache) { $this->bucketCache->clear(); } diff --git a/ext_emconf.php b/ext_emconf.php index 7b60ab4..7abd5fc 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'title' => 'Google Cloud Storage FAL Driver', 'description' => 'Google Cloud Storage FAL driver for TYPO3. Files can be stored in the GCS buckets.', 'category' => 'be', - 'version' => '1.0.12', + 'version' => '1.0.13', 'state' => 'stable', 'clearcacheonload' => 1, 'author' => 'Pierre Geyer',