summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 4c09857..e23db17 100644
--- a/src/index.js
+++ b/src/index.js
@@ -157,7 +157,7 @@ const choice = (list) => list[randint(list.length)];
const commonGroups = (a, b) => union(a.groups, b.groups);
async function loadDB() {
- const request = await fetch("/db.json");
+ const request = await fetch("/assets/db.json");
return await request.json();
}