Commit e59b0e85 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Fix de la suppression de fichier qui tenait compte de l'ancien nom

parent 3be9f4ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ class InformationFichierService {
    public function computeFilePath($fichier)
    {
        $pathDir = $this->fileService->computeDirectoryPathForInformation();
        $filePath = implode("/", [$pathDir, $fichier->getNom()]);
        $filePath = implode("/", [$pathDir, $fichier->getFilename()]);
        return $filePath;
    }