-
Notifications
You must be signed in to change notification settings - Fork 741
Closed
Labels
enhancementOptimization for existing features.Optimization for existing features.
Description
Great work ,
what happen when i upload some image with my FTP , the thumb not shown , icon instead , i changed
$thumb_path = $this->getThumbPath($file_name);
if (File::exists($thumb_path)) {
$thumb_url = $this->getThumbUrl($file_name) . '?timestamp=' . filemtime($thumb_path);
} else {
$thumb_url = null;
}to
$thumb_path = $this->getThumbPath($file_name);
if (File::exists($thumb_path)) {
$thumb_url = $this->getThumbUrl($file_name) . '?timestamp=' . filemtime($thumb_path);
} else {
$thumb_url = $this->getFileUrl($file_name) ;
}now ,when thumb not available ,image show as thumbnail,
do you have a better solution
Metadata
Metadata
Assignees
Labels
enhancementOptimization for existing features.Optimization for existing features.