Skip to content

Commit

Permalink
Leave TODOs to potentially evaluate "track" changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjohndoe committed Jul 5, 2024
1 parent d33f7d9 commit 05bc75f
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 @@ -52,7 +52,7 @@ data class Session(
val changedSpeakers: Boolean = false,
val changedLanguage: Boolean = false,
val changedRecordingOptOut: Boolean = false,
val changedTrack: Boolean = false,
val changedTrack: Boolean = false, // TODO Evaluate in schedule changes screen

val changedIsNew: Boolean = false,
val changedIsCanceled: Boolean = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ data class ScheduleChanges private constructor(
sessionChange.changedRoom = true
foundNoteworthyChanges = true
}
if (newSession.track != oldSession.track) {
if (newSession.track != oldSession.track) { // TODO Evaluate in schedule changes screen
sessionChange.changedTrack = true
foundNoteworthyChanges = true
}
Expand Down

0 comments on commit 05bc75f

Please sign in to comment.