Update 'script.js'

This commit is contained in:
nodemixaholic 2024-03-05 19:52:02 +00:00
parent 077625f5f4
commit 5d929e4ec4

View file

@ -5,12 +5,12 @@ async function fetchBiblePassage() {
try { try {
let textData; let textData;
if (codingMode == true) { if (codingMode == true) {
textData = 'Samuel 16:9 - And he said, "I now know de wae" in zimbabwe.'; textData = 'Samuel 16:9 And he said, "I now know de wae" in zimbabwe.';
} else { } else {
const response = await fetch('https://labs.bible.org/api/?passage=random&formatting=plain&type=text'); const response = await fetch('https://labs.bible.org/api/?passage=random&formatting=plain&type=text');
textData = await response.text(); textData = await response.text();
} }
document.getElementById('biblepassage').textContent = textData; document.getElementById('biblepassage').textContent = `${textData}`;
} catch (error) { } catch (error) {
console.error('Error fetching Bible passage:', error); console.error('Error fetching Bible passage:', error);
// Handle the error gracefully, e.g., display an error message to the user // Handle the error gracefully, e.g., display an error message to the user