dev #7

Merged
Astrian merged 3 commits from dev into main 2025-05-29 05:58:10 +00:00
Showing only changes of commit a85a092e5c - Show all commits

View File

@ -23,7 +23,11 @@ const emit = defineEmits<{
onMounted(async () => { onMounted(async () => {
try { try {
await axios.get(props.item.song.sourceUrl ?? '') await axios.get(props.item.song.sourceUrl ?? '', {
headers: {
'Range': 'bytes=0-0'
}
})
} catch (error) { } } catch (error) { }
// //
const updatedSong = await apis.getSong(props.item.song.cid) const updatedSong = await apis.getSong(props.item.song.cid)