Skip to content

Commit fe96d86

Browse files
committed
fix: default fingerprint
1 parent 83e653c commit fe96d86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/core/hosts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async def _prepare_subscription_inbound_data(
5959
tls_value = inbound_config.get("tls", "none")
6060

6161
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", "")
62+
fp = host.fingerprint.value if host.fingerprint.value != "none" else inbound_config.get("fp", "chrome")
6363
ais = host.allowinsecure if host.allowinsecure is not None else inbound_config.get("allowinsecure", False)
6464

6565
# Create TLS config once with merged data

0 commit comments

Comments
 (0)