Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 0fe6a38

Browse files
committed
Add a note about sharing your IP with P2P calls
Signed-off-by: Šimon Brandner <[email protected]>
1 parent d203e8f commit 0fe6a38

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@
833833
"Match system theme": "Match system theme",
834834
"Use a system font": "Use a system font",
835835
"System font name": "System font name",
836-
"Allow Peer-to-Peer for 1:1 calls": "Allow Peer-to-Peer for 1:1 calls",
836+
"Allow Peer-to-Peer for 1:1 calls (if you enable this, the other party might be able to see your IP address)": "Allow Peer-to-Peer for 1:1 calls (if you enable this, the other party might be able to see your IP address)",
837837
"Send analytics data": "Send analytics data",
838838
"Never send encrypted messages to unverified sessions from this session": "Never send encrypted messages to unverified sessions from this session",
839839
"Never send encrypted messages to unverified sessions in this room from this session": "Never send encrypted messages to unverified sessions in this room from this session",

src/settings/Settings.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,10 @@ export const SETTINGS: {[setting: string]: ISetting} = {
438438
},
439439
"webRtcAllowPeerToPeer": {
440440
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
441-
displayName: _td('Allow Peer-to-Peer for 1:1 calls'),
441+
displayName: _td(
442+
"Allow Peer-to-Peer for 1:1 calls " +
443+
"(if you enable this, the other party might be able to see your IP address)",
444+
),
442445
default: true,
443446
invertedSettingName: 'webRtcForceTURN',
444447
},

0 commit comments

Comments
 (0)