Skip to content

Commit

Permalink
fix : 선물 정보가 안 사라지는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HamBP committed Jul 25, 2024
1 parent 5ab52bf commit c5b4c74
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ fun HomeScreen(
val intent = context.requireActivity().intent
intent.action?.let { _ ->
val deepLink = intent.data.toString()
intent.data = null
val regex = "^https://app.boolti.in/gift/([\\w-])+$".toRegex()
if (regex.matches(deepLink)) {
val giftUuid = deepLink.split("/").last()
Expand Down

0 comments on commit c5b4c74

Please sign in to comment.