Skip to content

Commit 84e1ad0

Browse files
committed
[REFACTOR/#303] 디버그 앱에서는 점검시간 시 앱 진입 차단을 실행하지 않습니다.
1 parent 23259d5 commit 84e1ad0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/sopt/clody/presentation/ui/splash/SplashViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SplashViewModel @AssistedInject constructor(
5757
if (intent.startIntent.hasExtra("google.message_id")) {
5858
AmplitudeUtils.trackEvent(AmplitudeConstraints.ALARM)
5959
}
60-
if (checkInspectionAndHandle()) return
60+
if (!BuildConfig.DEBUG && checkInspectionAndHandle()) return
6161
checkVersionAndNavigate()
6262
attemptAutoLogin()
6363
}

0 commit comments

Comments
 (0)