Commit 03a554bb authored by Luna Riegel's avatar Luna Riegel
Browse files

Adjust catalogue retrieval timeout

parent 97558258
......@@ -154,7 +154,7 @@ async function loadCataloguesFromConfig(config) {
async function retrieveCatalogueJson(link) {
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), 1000);
const timeout = setTimeout(() => controller.abort(), 5000);
try {
const response = await fetch(link, { signal: controller.signal });
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment