修复镜像游戏在已安装显示成 null 的问题
This commit is contained in:
@ -173,6 +173,12 @@ public class InstalledGameFragmentAdapter extends BaseRecyclerAdapter<ViewHolder
|
||||
if (entity.getId().equals(id)) {
|
||||
GameEntity newEntity = entity.clone();
|
||||
newEntity.setLibaoExists(entity.isLibaoExists());
|
||||
|
||||
// 下载管理不显示镜像游戏,不然会有奇怪的问题
|
||||
if (entity.shouldUseMirrorInfo()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (newEntity.getApk().size() > 1) {
|
||||
for (ApkEntity apkEntity : newEntity.getApk()) {
|
||||
String packageName = sortedList.get(i).getPackageName();
|
||||
|
||||
Reference in New Issue
Block a user