Skip to content

Commit

Permalink
[FEAT/#59] 코드리뷰 수정사항 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel4990 committed Jan 21, 2025
1 parent 66fb7ac commit a74aecd
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,9 @@ private fun searchPlaceNaverMap(
false
}
if (!isInstalled) {
val marketIntent = Intent(Intent.ACTION_VIEW).apply {
data = Uri.parse("market://details?id=com.nhn.android.nmap")
Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.nhn.android.nmap")).apply {
context.startActivity(this)
}
context.startActivity(marketIntent)
} else {
Intent(Intent.ACTION_VIEW, Uri.parse(url)).apply {
addCategory(Intent.CATEGORY_BROWSABLE)
Expand Down

0 comments on commit a74aecd

Please sign in to comment.