修复bug:空间拍摄--》点击相簿浏览---》选中空间照片---》进入相片浏览---》切换浏览模式---》切换回“单眼2D”,必然崩溃,原因是photoOriginalURL为空,强制解析crash

This commit is contained in:
bluesea 2024-03-05 17:17:12 +08:00
parent 48fbda315a
commit b7d5e2d8eb

View File

@ -253,7 +253,8 @@ class CCSpatialPhotoDisplayController: BaseController {
if(selectedIndex == 0){
// --- 2D(广)
let image = UIImage(contentsOfFile: photoOriginalURL!.path)
// let image = UIImage(contentsOfFile: photoOriginalURL!.path)
let image = UIImage(data: photoOriginalData!)
mImgView.image = image
}else if(selectedIndex == 1){