Skip to content

Commit 6d213e1

Browse files
committed
Change Default Port to 6882
1 parent d998554 commit 6d213e1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/components/Framework.react.js

+5
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ const Framework = React.createClass({
8585

8686
request('https://www.google.com'); // Connect once to avoid cloggage
8787

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+
8893
if (ls('startFullscreen'))
8994
window.clFullscreen = true;
9095

src/utils/defaults.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var map = {
88
renderFreq: 500,
99
renderHidden: true,
1010
subEncoding: 'auto',
11-
peerPort: 6881,
11+
peerPort: 6882,
1212
maxPeers: 200,
1313
bufferSize: 7000,
1414
removeLogic: 0,

0 commit comments

Comments
 (0)