diff --git a/Assets/Cryville.EEW.Unity/Worker.cs b/Assets/Cryville.EEW.Unity/Worker.cs index 14a07fe..94135b1 100644 --- a/Assets/Cryville.EEW.Unity/Worker.cs +++ b/Assets/Cryville.EEW.Unity/Worker.cs @@ -184,9 +184,9 @@ namespace Cryville.EEW.Unity { }, EMSCRealTimeEventSourceConfig => new EMSCRealTimeWorker(new("wss://www.seismicportal.eu/standing_order/websocket")), FANStudioEventSourceConfig fanStudio => fanStudio.Subtype switch { - "cea" => new FANStudioWorker(new("wss://websocket.fanstudio.hk/cea")), - "sichuan" => new FANStudioWorker(new("wss://websocket.fanstudio.hk/sichuan")), - "fujian" => new FANStudioWorker(new("wss://websocket.fanstudio.hk/fujian")), + "cea" => new FANStudioWorker(new("wss://ws.fanstudio.tech/cea")), + "sichuan" => new FANStudioWorker(new("wss://ws.fanstudio.tech/sichuan")), + "fujian" => new FANStudioWorker(new("wss://ws.fanstudio.tech/fujian")), _ => throw new InvalidOperationException("Unknown FAN Studio sub-type."), }, GeoNetEventSourceConfig geoNet => BuildGeoNetWorker(new(new("https://api.geonet.org.nz/quake"), new("https://api.geonet.org.nz/quake/history/index"), new("https://api.geonet.org.nz/intensity/strong/processed/index")), geoNet),