Data files go in data folder

This commit is contained in:
2026-03-16 09:32:00 -05:00
parent 671e3cacf4
commit 8b5f6f173b
7 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -9,10 +9,10 @@ const issueFileDataCache = new Map();
const issueFilePromiseCache = new Map();
function loadSocialRefs() {
return fetch('social_refs.json')
return fetch('data/social_refs.json')
.then(response => {
if (!response.ok) {
throw new Error(`Failed to load social_refs.json (${response.status})`);
throw new Error(`Failed to load data/social_refs.json (${response.status})`);
}
return response.json();
})