Skip to content

Commit 3bacfa4

Browse files
committed
Checking in transpiled files for bower
1 parent d13086b commit 3bacfa4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/browser/neo4j-web.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28235,7 +28235,7 @@ function connect(url) {
2823528235
host: host(url),
2823628236
port: port(url) || 7687,
2823728237
// Default to using encryption if trust-on-first-use is available
28238-
encrypted: config.encrypted || (0, _features2["default"])("trust_on_first_use"),
28238+
encrypted: config.encrypted == null ? (0, _features2["default"])("trust_on_first_use") : config.encrypted,
2823928239
// Default to using trust-on-first-use if it is available
2824028240
trust: config.trust || ((0, _features2["default"])("trust_on_first_use") ? "TRUST_ON_FIRST_USE" : "TRUST_SIGNED_CERTIFICATES"),
2824128241
trustedCertificates: config.trustedCertificates || [],

lib/browser/neo4j-web.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/browser/neo4j-web.test.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/v1/internal/connector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ function connect(url) {
490490
host: host(url),
491491
port: port(url) || 7687,
492492
// Default to using encryption if trust-on-first-use is available
493-
encrypted: config.encrypted || (0, _features2["default"])("trust_on_first_use"),
493+
encrypted: config.encrypted == null ? (0, _features2["default"])("trust_on_first_use") : config.encrypted,
494494
// Default to using trust-on-first-use if it is available
495495
trust: config.trust || ((0, _features2["default"])("trust_on_first_use") ? "TRUST_ON_FIRST_USE" : "TRUST_SIGNED_CERTIFICATES"),
496496
trustedCertificates: config.trustedCertificates || [],

0 commit comments

Comments
 (0)