diff --git a/functions/src/tools/public-liked-songs.ts b/functions/src/tools/public-liked-songs.ts index 1bceac5..0963edc 100644 --- a/functions/src/tools/public-liked-songs.ts +++ b/functions/src/tools/public-liked-songs.ts @@ -218,6 +218,8 @@ function name(userName = 'User') { return userName + "'s Liked Songs" } function description() { - const date = new Date().toLocaleDateString('en-US') - return `Created at "https://spotify-tools/benkeys.com".\nLast updated on ${date}.` + const now = new Date() + const time = now.toLocaleTimeString('en-US') + const date = now.toLocaleDateString('en-US') + return `Created at "https://spotify-tools/benkeys.com". Last updated on ${time} ${date}.` }