Skip to content

Commit adfbf04

Browse files
committed
Fix filename format in downloadTask function for markdown export
1 parent d3c37ea commit adfbf04

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)