From f862d53243327b904ff84885fd43d66da94aacae Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Mon, 29 Jun 2020 20:35:14 -0500 Subject: [PATCH] Fixed date formatting --- CHANGELOG.md | 4 ++-- chat/Logs.vue | 2 +- components/date_display.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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): 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;