diff options
author | Omar Pakker <[email protected]> | 2024-09-03 13:03:13 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-09-03 07:03:13 -0400 |
commit | 4e365c6aa6f7e0786d8ceefdaa91099da59431f1 (patch) | |
tree | d4fa2b7753fc5b14b5a3cac0d131284dc0c93aca /frontend/src/pages | |
parent | 92708e722f9f2706f8503cc998032ddc9daf445f (diff) | |
download | bazarr-4e365c6aa6f7e0786d8ceefdaa91099da59431f1.tar.gz bazarr-4e365c6aa6f7e0786d8ceefdaa91099da59431f1.zip |
Added support for binding IPv4 AND IPv6 instead of just either one or the otherv1.4.4-beta.41
Diffstat (limited to 'frontend/src/pages')
-rw-r--r-- | frontend/src/pages/Settings/General/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/Settings/General/index.tsx b/frontend/src/pages/Settings/General/index.tsx index 312d09d1f..6db3ee7fc 100644 --- a/frontend/src/pages/Settings/General/index.tsx +++ b/frontend/src/pages/Settings/General/index.tsx @@ -43,10 +43,10 @@ const SettingsGeneralView: FunctionComponent = () => { <Section header="Host"> <Text label="Address" - placeholder="0.0.0.0" + placeholder="*" settingKey="settings-general-ip" ></Text> - <Message>Valid IPv4 address or '0.0.0.0' for all interfaces</Message> + <Message>Valid IP address or '*' for all interfaces</Message> <Number label="Port" placeholder="6767" |