- not saving the right image path in Chapter entity
This commit is contained in:
Jérémy Guillot
2024-07-24 17:26:03 +02:00
parent 7eba0981c8
commit 07675fddf1

View File

@@ -304,8 +304,8 @@ class MangaController extends AbstractController
fclose($tempImage);
return [
'full' => $this->fileSystemManager->getImagePath('full') . '/' . $newFilename,
'thumbnail' => $this->fileSystemManager->getImagePath('thumbnails') . '/' . $newFilename
'full' => '/images/full/' . $newFilename,
'thumbnail' => '/images/thumbnails/' . $newFilename
];
} catch (FileException $e) {