Skip to content

Commit

Permalink
홈 친생픽 아이템 클릭 시 튕기는 버그 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdahyee committed Dec 8, 2020
1 parent 357ad21 commit 39f0b69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/place/pic/ui/main/home/HomeFragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ class HomeFragment : Fragment() {
override fun onItemClick(view: View, position: Int) {
val clickedFriendPicIntent =
Intent(context, DetailViewActivity::class.java)
clickedFriendPicIntent.putExtra("placeIdx", friendPicListAll[position].placeIdx)
clickedFriendPicIntent.putExtra("placeIdx", friendPicList[position].placeIdx)
//clickedFriendPicIntent.putExtra("placeIdx", friendPicListAll[position].placeIdx)
startActivity(clickedFriendPicIntent)
}
})
Expand Down

0 comments on commit 39f0b69

Please sign in to comment.