fix: bugs

This commit is contained in:
Cory Dransfeldt 2024-05-07 17:27:28 -07:00
parent f55e39a84d
commit 8991366392
No known key found for this signature in database
5 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ export default async (request) => {
const artist = payload.Metadata.grandparentTitle const artist = payload.Metadata.grandparentTitle
const album = payload.Metadata.parentTitle const album = payload.Metadata.parentTitle
const track = payload.Metadata.title const track = payload.Metadata.title
const listenedAt = DateTime.now().toISO() const listenedAt = DateTime.now().toSeconds()
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase() const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
const albumKey = `${artistKey}-${sanitizeMediaString(album).replace(/\s+/g, '-').toLowerCase()}` const albumKey = `${artistKey}-${sanitizeMediaString(album).replace(/\s+/g, '-').toLowerCase()}`

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.2", "version": "14.0.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.2", "version": "14.0.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.2.2", "@cdransf/api-text": "^1.2.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.3", "version": "14.0.4",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -15,7 +15,7 @@ const fetchDataForPeriod = async (startPeriod, fields, table) => {
.from(table) .from(table)
.select(fields) .select(fields)
.order('listened_at', { ascending: false }) .order('listened_at', { ascending: false })
.gte('listened_at', startPeriod.toUTC().toSeconds()) .gte('listened_at', startPeriod.toSeconds())
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
if (error) { if (error) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 0 B