Skip to content

Commit

Permalink
삼성카드 백신 앱 onestore 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
JooYang committed Mar 6, 2024
1 parent d8035d9 commit 70e2acd
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ class TossPaymentView(context: Context, attrs: AttributeSet? = null) :
}
}
} else {
/*
* 삼성카드 백신 앱 onestore 링크 대응
*/
if (requestedUrl.startsWith("https://m.onestore") || requestedUrl.startsWith("https://onesto.re")) {
context.startActivity(Intent(Intent.ACTION_VIEW, uri))
return true
}
return false
}
} ?: false
Expand Down

0 comments on commit 70e2acd

Please sign in to comment.