diff options
Diffstat (limited to 'webAO/client/saveChatLogHandle.ts')
| -rw-r--r-- | webAO/client/saveChatLogHandle.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/client/saveChatLogHandle.ts b/webAO/client/saveChatLogHandle.ts index e083f2f..5e6b277 100644 --- a/webAO/client/saveChatLogHandle.ts +++ b/webAO/client/saveChatLogHandle.ts @@ -18,7 +18,7 @@ export const saveChatlogHandle = async () => { const mo = new Intl.DateTimeFormat("en", { month: "short" }).format(d); const da = new Intl.DateTimeFormat("en", { day: "2-digit" }).format(d); - const filename = `chatlog-${da}-${mo}-${ye}`.toLowerCase(); + const filename = `chatlog-${da}-${mo}-${ye}`; downloadFile(messages.join("\n"), filename); // Reset Chatbox to Empty |
