Skip to content

Commit

Permalink
chore: Add Nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
wnsgur1 committed Oct 29, 2024
1 parent 0236008 commit 13ed784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fun DodamTeacherApp(exit: () -> Unit, viewModel: DodamTeacherAppViewModel = koin
}

LaunchedEffect(bundleData.bundleId) {
if (bundleData.bundleId != VERSION_INFO && getPlatformName() == PlatformModel.IOS.name) {
if (bundleData.bundleId?.isNotEmpty() == true && bundleData.bundleId != VERSION_INFO && getPlatformName() == PlatformModel.IOS.name) {
showVersionDialog = true
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.b1nd.dodam.teacher.model

data class BundleIdInfoModel(
val bundleId: String = "",
val bundleId: String? = null,
)

0 comments on commit 13ed784

Please sign in to comment.