fix: 修改道路任务或POI录像照片过多时数据存储过大的问题

This commit is contained in:
xiaoyan 2023-01-29 18:07:37 +08:00
parent 2a712986d7
commit 57f07be916
2 changed files with 4 additions and 4 deletions

View File

@ -889,8 +889,8 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
}
}
}
String photoStr = AWMp4ParserHelper.getInstance().getVideoFileListStr(fileListByUUID);
poiEntity.setPhoto(photoStr);
// String photoStr = AWMp4ParserHelper.getInstance().getVideoFileListStr(fileListByUUID);
poiEntity.setPhoto(fileListByUUID.size()+"");
}
}

View File

@ -989,8 +989,8 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
}
}
}
String photoStr = AWMp4ParserHelper.getInstance().getVideoFileListStr(fileListByUUID);
poiEntity.setPhoto(photoStr);
// String photoStr = AWMp4ParserHelper.getInstance().getVideoFileListStr(fileListByUUID);
poiEntity.setPhoto(fileListByUUID.size()+"");
}
}
return poiEntity;