Treat webp as image in integration search module

This commit is contained in:
Kijin Sung 2023-09-24 21:54:08 +09:00
parent 97705e75f4
commit 290367a87c

View file

@ -235,7 +235,7 @@ class integration_searchModel extends module
$obj->target_srl = $val->upload_target_srl;
$obj->file_size = $val->file_size;
// Images
if(preg_match('/\.(jpg|jpeg|gif|png)$/i', $val->source_filename))
if(preg_match('/\.(jpe?g|gif|png|webp)$/i', $val->source_filename))
{
$obj->type = 'image';