Skip to content

Commit 6b17085

Browse files
authored
fix(ticktick): Fix TickTick adding extra xxxx at the start of the description (#2332)
Closes #2312
1 parent 362be1f commit 6b17085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/ticktick.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ togglbutton.render('#task-detail-view:not(.toggl)', { observe: true }, function
77
}
88

99
function getDescription () {
10-
const descriptionEl = elem.querySelector('.task-title');
10+
const descriptionEl = elem.querySelector('.task-title .CodeMirror-code');
1111
return descriptionEl ? descriptionEl.textContent.trim() : '';
1212
}
1313

0 commit comments

Comments
 (0)