Skip to content

Commit 1726fc4

Browse files
use sploder.xyz domain
1 parent e6ac422 commit 1726fc4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/local/offline.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
var retryParameterValue = url.searchParams.get('retry');
2020

2121
// Provide a default value if the 'retry' parameter is not present
22-
return retryParameterValue !== null ? retryParameterValue : 'http://sploder.local/update';
22+
return retryParameterValue !== null ? retryParameterValue : 'https://sploder.xyz/update';
2323
}
2424

2525

src/local/start.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// If the URL is not provided, redirect to the update page
1616
if (url == null) {
17-
window.location.href = "http://sploder.local/update";
17+
window.location.href = "https://sploder.xyz/update";
1818
}
1919

2020
var page;
@@ -69,7 +69,7 @@
6969

7070

7171
const frame = document.getElementById('content-frame');
72-
var url = "http://sploder.local/php/ping.php";
72+
var url = "https://sploder.xyz/php/ping.php";
7373
var xhttp = new XMLHttpRequest();
7474
xhttp.onreadystatechange = function() {
7575

src/main/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function createWindow() {
121121
} else {
122122
startpath = "/../../resources/src/local/start.html?url="
123123
}
124-
win.loadURL("file:///" + app.getAppPath().replace(/\\/g, '/') + startpath + "http://sploder.local/update");
124+
win.loadURL("file:///" + app.getAppPath().replace(/\\/g, '/') + startpath + "https://sploder.xyz/update");
125125
win.webContents.on('did-finish-load', () => {
126126
win.show();
127127
});

0 commit comments

Comments
 (0)