tentando resolver problema do download do zip no mmpCreator
Deploy / Deploy (push) Successful in 1m37s Details

This commit is contained in:
JotaChina 2025-12-10 16:00:19 -03:00
parent 3c5b571482
commit 92d35b2285
1 changed files with 2 additions and 2 deletions

View File

@ -789,7 +789,7 @@
}
// 3. Monta a URL da API Python e inicia o download
const apiUrl = `http://alice.ufsj.edu.br:33002/api/download/${projectName}`;
const apiUrl = `https://alice.ufsj.edu.br:33002/api/download/${projectName}`;
// Feedback visual rápido
downloadBtn.style.opacity = "0.5";
@ -847,7 +847,7 @@
uploadSampleBtn.style.pointerEvents = "none";
try {
const response = await fetch("http://alice.ufsj.edu.br:33002/api/upload/sample", {
const response = await fetch("https://alice.ufsj.edu.br:33002/api/upload/sample", {
method: "POST",
body: formData
});