diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1705da..56cf51b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,8 @@
 # Changelog
 
 ## Canary
-*   Fix caching issue that causes cache misses on charater page metadata
-*   Fix ad posting issue that sometimes disconnects characters if multiple characters are in use
+*   Fixed caching issue that causes cache misses on charater page metadata
+*   Fixed ad posting issue that sometimes disconnects characters if multiple characters are in use
 *   URL preview fixes for Redgifs, Gelbooru, Tumblr, and Gifmixxx
 *   All dependencies are now up to date
 
diff --git a/chat/Logs.vue b/chat/Logs.vue
index 808de6f..05b6968 100644
--- a/chat/Logs.vue
+++ b/chat/Logs.vue
@@ -74,7 +74,7 @@
     import Zip from './zip';
 
     function formatDate(this: void, date: Date): string {
-        return format(date, 'yyyy-MM-DD');
+        return format(date, 'yyyy-MM-dd');
     }
 
     function getLogs(messages: ReadonlyArray<Conversation.Message>): string {
diff --git a/components/date_display.vue b/components/date_display.vue
index ccfbc8f..fac1b96 100644
--- a/components/date_display.vue
+++ b/components/date_display.vue
@@ -21,7 +21,7 @@
             if(this.time === null || this.time === 0)
                 return;
             const date = isNaN(+this.time) ? new Date(`${this.time}+00:00`) : new Date(+this.time * 1000);
-            const absolute = format(date, 'yyyy-MM-DD HH:mm');
+            const absolute = format(date, 'yyyy-MM-dd HH:mm');
             const relative = formatDistanceToNow(date, {addSuffix: true});
             if(settings.fuzzyDates) {
                 this.primary = relative;