In the beforeSave method in file
MagentoCatalogModelCategoryAttributeBackendImage
In the beforeSave method in file
MagentoCatalogModelCategoryAttributeBackendImage
REPLACE
$imageName = $this->checkUniqueImageName($imageName);
WITH
if(array_key_exists(‘tmp_name’, $value[0])){
$imageName = $this->checkUniqueImageName($imageName);
}