We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e653c commit fe96d86Copy full SHA for fe96d86
app/core/hosts.py
@@ -59,7 +59,7 @@ async def _prepare_subscription_inbound_data(
59
tls_value = inbound_config.get("tls", "none")
60
61
alpn_list = [alpn.value for alpn in host.alpn] if host.alpn else inbound_config.get("alpn", [])
62
- fp = host.fingerprint.value if host.fingerprint.value != "none" else inbound_config.get("fp", "")
+ fp = host.fingerprint.value if host.fingerprint.value != "none" else inbound_config.get("fp", "chrome")
63
ais = host.allowinsecure if host.allowinsecure is not None else inbound_config.get("allowinsecure", False)
64
65
# Create TLS config once with merged data
0 commit comments