fix: fixed Stats Remote host

This commit is contained in:
Serhiy Mytrovtsiy
2025-04-06 18:05:18 +02:00
parent 7feef195f1
commit 605156d323
4 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ public protocol RemoteType {
public class Remote {
public static let shared = Remote()
static public var host = URL(string: "http://localhost:8008")! // https://api.system-stats.com http://localhost:8008
static public var host = URL(string: "https://api.system-stats.com")! // https://api.system-stats.com http://localhost:8008
public var monitoring: Bool {
get { Store.shared.bool(key: "remote_monitoring", defaultValue: false) }