From 5ee77b32f05e8f462dbb11404bc7584eb84c6495 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 15 Apr 2024 13:44:44 -0700 Subject: [PATCH] fix: error handling --- package-lock.json | 4 ++-- package.json | 2 +- plugins/fetch-scrobbles/index.js | 8 +++++++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 77b88bc5..5588b4e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "11.0.0", + "version": "11.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "11.0.0", + "version": "11.3.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.2.2", diff --git a/package.json b/package.json index cd5f04e9..38ca00b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "11.3.0", + "version": "11.3.1", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 5a9f275a..0e21ff4b 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -62,7 +62,13 @@ export const onPreBuild = async ({ constants }) => { } 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']) }