[CORE] Fix path configuration

This commit is contained in:
2021-08-19 01:45:11 +01:00
committed by Hugo Sales
parent e7b985a460
commit 2b457655ea
7 changed files with 8 additions and 13 deletions

View File

@@ -211,7 +211,7 @@ class AttachmentThumbnail extends Entity
public function getPath()
{
return Common::config('thumbnail', 'dir') . $this->getFilename();
return Common::config('thumbnail', 'dir') . DIRECTORY_SEPARATOR . $this->getFilename();
}
public function getUrl()