File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -228,9 +228,9 @@ public static string FixupURL(string URL)
228
228
URL = URL . Replace ( "https://stream-tls10." , "wss://stream-tls10." ) ;
229
229
}
230
230
// Germany
231
- else if ( URL . StartsWith ( "https://gateway -fra." ) )
231
+ else if ( URL . StartsWith ( "https://stream -fra." ) )
232
232
{
233
- URL = URL . Replace ( "https://gateway -fra." , "wss://stream-fra." ) ;
233
+ URL = URL . Replace ( "https://stream -fra." , "wss://stream-fra." ) ;
234
234
}
235
235
// US East
236
236
else if ( URL . StartsWith ( "https://gateway-wdc." ) )
@@ -242,6 +242,11 @@ public static string FixupURL(string URL)
242
242
{
243
243
URL = URL . Replace ( "https://gateway-syd." , "wss://gateway-syd." ) ;
244
244
}
245
+ // Tokyo
246
+ else if ( URL . StartsWith ( "https://gateway-tok." ) )
247
+ {
248
+ URL = URL . Replace ( "https://gateway-tok." , "wss://gateway-tok." ) ;
249
+ }
245
250
else
246
251
{
247
252
URL = URL . Replace ( https , wss ) ;
You can’t perform that action at this time.
0 commit comments