jacobcyl / Aliyun-oss-storage

阿里云OSS laravel storage Filesystem adapter, 打造Laravel最好的OSS Storage扩展.
http://jacobcyl.github.io/Aliyun-oss-storage/
MIT License
521 stars 161 forks source link

获取对象 Meta 信息时,返回信息中没有包含文件 type 类型字段 #52

Open charkecc opened 6 years ago

charkecc commented 6 years ago

https://github.com/jacobcyl/Aliyun-oss-storage/blob/9abd13bfb288d93b85db5a1ddc0d2b6b29b26a03/src/AliOssAdapter.php#L507 ` return $objectMeta;

修改为: return $this->normalizeResponse($objectMeta, $path); ` 不然的话文件类型往下执行就识别成文件夹类型了;删除多个远程文件时会出现操作成功,但却只删除一个文件,原因就是把文件类型识别成了文件夹了。