From e589bce5c67781c1f963cf73dcfee50e43bb2cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B6=E5=AD=90=E7=BB=B4?= Date: Mon, 17 Jul 2023 09:35:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E3=80=90=E5=85=89=E7=8E=AF=E5=8A=A9?= =?UTF-8?q?=E6=89=8B=E3=80=91=E5=86=85=E5=AE=B9=E5=AF=BC=E8=88=AA=E6=A0=8F?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E9=97=AA=E7=83=81=20https://jira.shanqu.cc/b?= =?UTF-8?q?rowse/GHZS-2945?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/gh/gamecenter/search/SearchGameIndexAdapter.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/com/gh/gamecenter/search/SearchGameIndexAdapter.kt b/app/src/main/java/com/gh/gamecenter/search/SearchGameIndexAdapter.kt index ded4d38c98..95bf119cf7 100644 --- a/app/src/main/java/com/gh/gamecenter/search/SearchGameIndexAdapter.kt +++ b/app/src/main/java/com/gh/gamecenter/search/SearchGameIndexAdapter.kt @@ -534,8 +534,7 @@ class SearchGameIndexAdapter( if (key.contains(download.packageName) && key.contains(download.gameId)) { val position = positionAndPackageMap[key] if (position != null && mEntityList != null && position < mEntityList.size && mEntityList[position].game != null) { - mEntityList[position].game!!.getEntryMap()[download.platform] = download - notifyItemChanged(position) + DownloadItemUtils.processDate(mEntityList[position].game!!, download, this, position) } } }