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: domain/src/main/java/com/example/util/simpletimetracker/domain/record/interactor/AddRunningRecordMediator.kt
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,7 @@ class AddRunningRecordMediator @Inject constructor(
75
75
timeStarted:StartTime = StartTime.TakeCurrent,
76
76
updateNotificationSwitch:Boolean = true,
77
77
checkDefaultDuration:Boolean = true,
78
+
useSelectedTags:Boolean = false,
78
79
) = coroutineScope {
79
80
val currentTime = currentTimestampProvider.get()
80
81
val actualTimeStarted =when (timeStarted) {
@@ -116,11 +117,15 @@ class AddRunningRecordMediator @Inject constructor(
Copy file name to clipboardExpand all lines: features/feature_notification/src/main/java/com/example/util/simpletimetracker/feature_notification/recordType/interactor/ActivityStartStopFromBroadcastInteractor.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -243,6 +243,7 @@ class ActivityStartStopFromBroadcastInteractor @Inject constructor(
Copy file name to clipboardExpand all lines: features/feature_tag_selection/src/main/java/com/example/util/simpletimetracker/feature_tag_selection/viewModel/RecordTagSelectionViewModel.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,7 @@ class RecordTagSelectionViewModel @Inject constructor(
148
148
typeId = extra.typeId,
149
149
tags = newTags,
150
150
comment = newComment,
151
+
useSelectedTags =true,
151
152
)
152
153
if (showAllTags) {
153
154
addTagToTypeIfNotExistMediator.execute(
@@ -159,7 +160,6 @@ class RecordTagSelectionViewModel @Inject constructor(
159
160
}
160
161
161
162
// TODO TAG add check retroactive mode to loaded preselected tags?
0 commit comments