get rid of using eps32 as web proxy

This commit is contained in:
Nic Limper
2023-08-22 17:05:23 +02:00
parent 9ad847eb53
commit 034521682c
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -152,7 +152,7 @@ export async function updateWebpage(fileUrl, tagname, showReload) {
print("Updating littleFS partition...");
fetch("/getexturl?url=" + fileUrl)
fetch("https://openepaperlink.eu/getupdate/?url=" + fileUrl)
.then(response => response.json())
.then(data => {
checkfiles(data);
@@ -256,7 +256,7 @@ export async function updateESP(fileUrl, showConfirm) {
while (retryCount < maxRetries) {
try {
const response = await fetch("/getexturl?url=" + fileUrl);
const response = await fetch("https://openepaperlink.eu/getupdate/?url=" + fileUrl);
const responseBody = await response.text();
if (!response.ok) {
throw new Error("Network response was not OK: " + responseBody);