Skip to content

Commit

Permalink
Merge pull request #498 from BCSDLab/hotfix/categoty_bug
Browse files Browse the repository at this point in the history
[Hotfix] 카테고리, 주변상점 버그 수정
  • Loading branch information
hsgo2430 authored Dec 3, 2024
2 parents 30be6b7 + d549432 commit 5ff64d4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

extra.apply {
set("versionName", "4.1.2")
set("versionCode", 40102)
set("versionName", "4.1.3")
set("versionCode", 40103)
// 코인 버전 관리

set("versionBusinessName", "1.0.1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class MainActivity : KoinNavigationDrawerTimeActivity() {
EventExtra(AnalyticsConstant.CURRENT_PAGE, name),
EventExtra(AnalyticsConstant.DURATION_TIME, getElapsedTimeAndReset().toString())
)
gotoStoreActivity(id)
gotoStoreActivity(id + 1)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,7 @@ class StoreActivity : KoinNavigationDrawerTimeActivity() {
EventExtra(AnalyticsConstant.DURATION_TIME, getElapsedTimeAndReset().toString())
)
}
storeDetailContract.launch(
Triple(
it.uid,
viewModel.category.value?.name,
false
)
)

EventLogger.logClickEvent(
EventAction.BUSINESS,
AnalyticsConstant.Label.SHOP_CLICK,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ class StoreCategoriesRecyclerAdapter(): ListAdapter<StoreCategories, StoreCatego
}

fun initCategory(id: Int?){
selectPosition = id
preCategories = id
if(id != null){
selectPosition = id - 1
preCategories = id - 1
}
}

companion object {
Expand Down

0 comments on commit 5ff64d4

Please sign in to comment.