File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -213,14 +213,16 @@ public static string FixupURL(string URL)
213
213
URL = URL . Replace ( "https://stream." , "wss://stream." ) ;
214
214
}
215
215
216
- // TLS 1.0 endpoint
216
+ // TLS 1.0 endpoint - Do not change this to TLS 1.2 endpoint since
217
+ // users may need to use the TLS 1.0 endpoint because of different
218
+ // platforms.
217
219
else if ( URL . StartsWith ( "http://stream-tls10." ) )
218
220
{
219
- URL = URL . Replace ( "http://stream-tls10." , "ws://stream." ) ;
221
+ URL = URL . Replace ( "http://stream-tls10." , "ws://stream-tls10 ." ) ;
220
222
}
221
223
else if ( URL . StartsWith ( "https://stream-tls10." ) )
222
224
{
223
- URL = URL . Replace ( "https://stream-tls10." , "wss://stream." ) ;
225
+ URL = URL . Replace ( "https://stream-tls10." , "wss://stream-tls10 ." ) ;
224
226
}
225
227
226
228
// Germany
You can’t perform that action at this time.
0 commit comments