We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d998554 commit 6d213e1Copy full SHA for 6d213e1
src/components/Framework.react.js
@@ -85,6 +85,11 @@ const Framework = React.createClass({
85
86
request('https://www.google.com'); // Connect once to avoid cloggage
87
88
+ // there are issues with port 6881 (in particular) on OSX
89
+ // as 6881 was previously the default port we will change it
90
+ if (ls('peerPort') == 6881)
91
+ ls('peerPort', 6882)
92
+
93
if (ls('startFullscreen'))
94
window.clFullscreen = true;
95
src/utils/defaults.js
@@ -8,7 +8,7 @@ var map = {
8
renderFreq: 500,
9
renderHidden: true,
10
subEncoding: 'auto',
11
- peerPort: 6881,
+ peerPort: 6882,
12
maxPeers: 200,
13
bufferSize: 7000,
14
removeLogic: 0,
0 commit comments