Fix presentors array

This commit is contained in:
Aditya Thakral 2021-09-02 12:29:05 -04:00
parent 8d97001460
commit 289e0f8c67
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ async function xml2md(talk, index) {
index: ${index}
title: '${title.replaceAll("'", "''")}'
presentors:
- '${presentors.join("\n - ").replaceAll("'", "''")}'
- ${presentors.join("\n - ").replaceAll("'", "''")}
thumbnails:
small: '${thumbSmall}'${thumbLarge ? `\n large: '${thumbLarge}'` : ""}
links:
@ -129,7 +129,7 @@ async function resourceExists(url) {
const time = Math.trunc(Math.random() * 10000);
await sleep(time);
// const timer = setTimeout(() => console.log("not done", time, url), time + 3000);
const timer = setTimeout(() => console.log("not done", time, url), time + 3000);
const response = await fetch(url);
clearTimeout(timer)