Restart using electron api is present. (#1255)

This commit is contained in:
Robin Huang
2024-11-20 22:01:14 -08:00
committed by GitHub
parent 8be3cce9a9
commit ff8fb087e0

View File

@@ -12,6 +12,10 @@ export async function sleep(ms) {
} }
export function rebootAPI() { export function rebootAPI() {
if ('electronAPI' in window) {
window.electronAPI.restartApp();
return true;
}
if (confirm("Are you sure you'd like to reboot the server?")) { if (confirm("Are you sure you'd like to reboot the server?")) {
try { try {
api.fetchApi("/manager/reboot"); api.fetchApi("/manager/reboot");