fix: bugs
This commit is contained in:
parent
f55e39a84d
commit
8991366392
5 changed files with 5 additions and 5 deletions
|
@ -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
4
package-lock.json
generated
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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 |
Reference in a new issue