Update Application.php

Fix corruption for logging internal path with multibyte characters in file preview event

Signed-off-by: GrayFix <grayfix@gmail.com>
This commit is contained in:
GrayFix 2020-01-21 15:22:10 +05:00
parent 8056bbeae3
commit 3e482653b9
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ class Application extends App {
/** @var File $file */
$file = $event->getSubject();
$fileActions->preview([
'path' => substr($file->getInternalPath(), 5),
'path' => mb_substr($file->getInternalPath(), 5),
'width' => $event->getArguments()['width'],
'height' => $event->getArguments()['height'],
'crop' => $event->getArguments()['crop'],