We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f6d7c commit 0510de5Copy full SHA for 0510de5
lib/src/engine/socket.dart
@@ -62,7 +62,8 @@ class Socket extends EventEmitter {
62
opts['hostname'] = Uri.parse(opts['host']).host;
63
}
64
65
- secure = opts['secure'] ?? false /*?? (window.location.protocol == 'https:')*/;
+ secure =
66
+ opts['secure'] ?? false /*?? (window.location.protocol == 'https:')*/;
67
68
if (opts['hostname'] != null && !opts.containsKey('port')) {
69
// if no port is specified manually, use the protocol default
lib/src/engine/transport/js_array.dart
pubspec.yaml
@@ -11,7 +11,6 @@ environment:
11
dependencies:
12
logging: '^1.2.0'
13
socket_io_common: '^3.0.0-beta.0'
14
- js: '^0.7.1'
15
16
dev_dependencies:
17
lints: ^3.0.0
0 commit comments