Skip to content

Commit

Permalink
修改了重复事件生成文件名的逻辑
Browse files Browse the repository at this point in the history
  • Loading branch information
ACodeHX committed Feb 13, 2024
1 parent 00a36e8 commit 70098f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64171,7 +64171,7 @@ var basenameFromEvent = (event) => {
case "single":
return `${event.date} ${event.title}`;
case "recurring":
return `(Every ${event.daysOfWeek.join(",")}) ${event.title}`;
return `${event.title}(Every${event.daysOfWeek.join(",")})`;
case "rrule":
return `(${rrulestr(event.rrule).toText()}) ${event.title}`;
}
Expand Down

0 comments on commit 70098f1

Please sign in to comment.