Skip to content

Commit

Permalink
update :: essentialComplete uppercase check
Browse files Browse the repository at this point in the history
  • Loading branch information
ani2689 committed Sep 1, 2024
1 parent 686528a commit 65e062f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class AdminServiceImpl(
val endDate = row.getCell(12).stringCellValue.toLocalDateTime()
val essentialComplete = row.getCell(16).stringCellValue

val lectureEssentialComplete = essentialComplete == "O"
val lectureEssentialComplete = essentialComplete.uppercase() == "O"

val lecture = Lecture(
id = UUID(0, 0),
Expand Down

0 comments on commit 65e062f

Please sign in to comment.