This commit is contained in:
2023-06-26 13:32:29 +02:00
parent 731f5987dc
commit 07ee6cb913
+1 -1
View File
@@ -258,7 +258,7 @@
for(var i = 0;i < lines.length;i++){
var podcastInfo = lines[i].split(';');
const podcastTitle = document.createTextNode(lines[i]);
podcastDiv.appenChild('<p>' + podcastInfo[0] + '</p>');
podcastDiv.appendChild('<p>' + podcastInfo[0] + '</p>');
}
});