Skip to content

Commit 026091e

Browse files
Fix filename format in downloadTask function for markdown export (#2717)
* Fix filename format in downloadTask function for markdown export * Update src/integrations/misc/export-markdown.ts Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
1 parent 1e0e01b commit 026091e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integrations/misc/export-markdown.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function downloadTask(dateTs: number, conversationHistory: Anthropi
1515
const ampm = hours >= 12 ? "pm" : "am"
1616
hours = hours % 12
1717
hours = hours ? hours : 12 // the hour '0' should be '12'
18-
const fileName = `cline_task_${month}-${day}-${year}_${hours}-${minutes}-${seconds}-${ampm}.md`
18+
const fileName = `roo_task_${month}-${day}-${year}_${hours}-${minutes}-${seconds}-${ampm}.md`
1919

2020
// Generate markdown
2121
const markdownContent = conversationHistory

0 commit comments

Comments
 (0)