You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/feature_statistics_detail/src/main/java/com/example/util/simpletimetracker/feature_statistics_detail/interactor/StatisticsDetailStatsInteractor.kt
+33-12Lines changed: 33 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,13 @@ class StatisticsDetailStatsInteractor @Inject constructor(
117
117
118
118
val firstRecordData = recordsSorted.firstOrNull()?.timeStarted
119
119
val lastRecordData = recordsSorted.lastOrNull()?.timeEnded
120
+
val compareFirstRecordData = compareRecordsSorted.firstOrNull()?.timeStarted
121
+
val compareLastRecordData = compareRecordsSorted.lastOrNull()?.timeEnded
122
+
val recordSpanData =if (firstRecordData !=null&& lastRecordData !=null) {
0 commit comments