This commit is contained in:
2025-10-25 12:14:47 +02:00
parent 0df5fd8644
commit f10af1ca02
6 changed files with 10 additions and 8 deletions

View File

@@ -157,6 +157,9 @@ Singleton {
if (!geoURLToken)
Logger.warn("IpService", "No token found for geoIP service, assuming none is required");
if (geoURLToken[geoURLToken.length - 1] === "\n")
geoURLToken = geoURLToken.slice(0, -1);
fetchIP();
fetchTimer.start();
}

View File

@@ -11,7 +11,7 @@ Singleton {
id: process
running: true
command: ["kquitapp6", "kded6"]
command: ["sh", "-c", "which kquitapp6 && kquitapp6 kded6"]
onExited: (code, status) => {
if (code !== 0)
Logger.warn("NukeKded6", `Failed to kill kded6: ${code}`);