[M] Rename var

This commit is contained in:
2025-11-19 19:20:30 +08:00
parent f04578a791
commit 90c9043111
4 changed files with 1 additions and 1 deletions
@@ -2,7 +2,7 @@ import type { PageServerLoad } from './$types'
import { getLyricsProcessed, getSongMeta, listPlaylists, parseBrief } from "$lib/server/songs.ts";
export const load: PageServerLoad = async ({ params }) => {
const songId = +params.slug
const songId = +params.id
const raw = await getSongMeta(songId)
const brief = parseBrief(raw)
const lrc = await getLyricsProcessed(songId)