From c56963fab3e45ef576ba8c8a1f8a68ec32b9019b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B6=E5=AD=90=E7=BB=B4?= Date: Wed, 5 Mar 2025 11:19: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=8A=9F=E8=83=BD=E6=A0=87=E7=AD=BE=E5=BC=95?= =?UTF-8?q?=E5=AF=BC=E7=9A=84=E5=87=BA=E7=8E=B0=E6=97=B6=E6=9C=BA=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20https://jira.shanqu.cc/browse/GHZSCY-7612?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/gh/gamecenter/gamedetail/detail/GameDetailFragment.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/com/gh/gamecenter/gamedetail/detail/GameDetailFragment.kt b/app/src/main/java/com/gh/gamecenter/gamedetail/detail/GameDetailFragment.kt index 26800bfe80..11610ee53b 100644 --- a/app/src/main/java/com/gh/gamecenter/gamedetail/detail/GameDetailFragment.kt +++ b/app/src/main/java/com/gh/gamecenter/gamedetail/detail/GameDetailFragment.kt @@ -271,8 +271,7 @@ class GameDetailFragment : LazyFragment(), IScrollable { } val infoTagData = viewModel.infoTagLiveData.value - val isFunctionTagShow = infoTagData?.requestSpeedStatus == "on" || !infoTagData?.infoTags.isNullOrEmpty() - val showFunctionTagGuide = isFunctionTagShow && SPUtils.getBoolean(Constants.SP_SHOW_GAME_DETAIL_FUNCTION_TAG_GUIDE, true) + val showFunctionTagGuide = !infoTagData?.infoTags.isNullOrEmpty() && SPUtils.getBoolean(Constants.SP_SHOW_GAME_DETAIL_FUNCTION_TAG_GUIDE, true) if (!isPerformedSuccess && showFunctionTagGuide) { binding.coverRv.post { showFunctionTagGuide()