fix: error handling
This commit is contained in:
parent
b324dc6b29
commit
5ee77b32f0
3 changed files with 10 additions and 4 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "11.0.0",
|
"version": "11.3.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "11.0.0",
|
"version": "11.3.0",
|
||||||
"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": "11.3.0",
|
"version": "11.3.1",
|
||||||
"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": {
|
||||||
|
|
|
@ -62,7 +62,13 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key of yearKeys) {
|
for (const key of yearKeys) {
|
||||||
const scrobbleData = await scrobbles.get(key, { type: 'json'})
|
let scrobbleData;
|
||||||
|
try {
|
||||||
|
scrobbleData = await scrobbles?.get(key, { type: 'json'})
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Error: can't get more scrobbles.")
|
||||||
|
break;
|
||||||
|
}
|
||||||
yearChartData['data'].push(...scrobbleData['data'])
|
yearChartData['data'].push(...scrobbleData['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue