feat: 修复游戏详情页仅显示一个按钮时,畅玩游戏更新无法正常执行的问题

This commit is contained in:
chenjuntao
2024-02-28 13:44:52 +08:00
parent e999fd33f7
commit 685102c0da

View File

@ -544,7 +544,10 @@ class DetailViewHolder(
val apkEntity = mGameEntity.getApk()[0]
val msg = FileUtils.isCanDownload(mViewHolder.context, apkEntity.size)
if (TextUtils.isEmpty(msg)) {
if (asVGame && mViewHolder.context.getString(R.string.update_v) == buttonText) {
val btnContainsUpdateText = mViewHolder.context.getString(R.string.update_v) == buttonText
|| buttonText.contains(mViewHolder.context.getString(R.string.update))
if (asVGame && btnContainsUpdateText) {
VHelper.updateOrReDownload(mGameEntity)
} else {
DownloadManager.createDownload(