File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1153,7 +1153,8 @@ async function SyncTimeEntries () {
1153
1153
continue
1154
1154
}
1155
1155
1156
- if ( timeEntry . duronly ) {
1156
+ // if (timeEntry.duronly) { // This is the recommended documentation way, however, it is false-positive and always true currently.
1157
+ if ( ! ( timeEntry . start && timeEntry . stop ) ) { // Using alternative manual check
1157
1158
console . warn ( 'Duration only time entries are not yet implemented.' )
1158
1159
await deletePreviousTimeEntryMapping ( )
1159
1160
syncResults . ignored . push ( {
@@ -1163,7 +1164,6 @@ async function SyncTimeEntries () {
1163
1164
continue
1164
1165
}
1165
1166
1166
-
1167
1167
if ( activeCollabSummary === '' ) {
1168
1168
await deletePreviousTimeEntryMapping ( )
1169
1169
syncResults . ignored . push ( {
You can’t perform that action at this time.
0 commit comments