From 014a65d2a5989a787071ba1ae9626abf1b77a35d Mon Sep 17 00:00:00 2001 From: z0ccc Date: Wed, 19 Oct 2022 01:00:15 -0400 Subject: [PATCH] Fixed webRtc handling descriptions --- src/Popup/Pages/WebRtcPage/index.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Popup/Pages/WebRtcPage/index.tsx b/src/Popup/Pages/WebRtcPage/index.tsx index dad4d1e..27eb121 100644 --- a/src/Popup/Pages/WebRtcPage/index.tsx +++ b/src/Popup/Pages/WebRtcPage/index.tsx @@ -27,16 +27,7 @@ const WebRtcPage = ({ tab }: SystemPageProps) => { value={'default'} name={'Default'} description={ - 'Same as above, except allow WebRTC traffic through the default private' - } - webRtcPolicy={webRtcPolicy} - onChange={changeRadioValue} - /> - { value={'default_public_and_private_interfaces'} name={'Default Public And Private Interfaces'} description={ - 'Same as above, except allow WebRTC traffic through the default private' + 'Will only use interface connecting to the public Internet, but may connect using private IP.' } webRtcPolicy={webRtcPolicy} onChange={changeRadioValue} @@ -54,7 +45,16 @@ const WebRtcPage = ({ tab }: SystemPageProps) => { value={'default_public_interface_only'} name={'Default Public Interface Only'} description={ - 'Same as above, except allow WebRTC traffic through the default private' + 'Will only use interface connecting to the public Internet, and will not connect using private IP.' + } + webRtcPolicy={webRtcPolicy} + onChange={changeRadioValue} + /> +