mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-03-20 15:22:35 +08:00
fix: VMess URI alterId parseInt
This commit is contained in:
@@ -218,7 +218,7 @@ function URI_VMess() {
|
||||
port: params.port,
|
||||
cipher: getIfPresent(params.scy, 'auto'),
|
||||
uuid: params.id,
|
||||
alterId: getIfPresent(params.aid, 0),
|
||||
alterId: parseInt(getIfPresent(params.aid, 0)),
|
||||
tls: params.tls === 'tls' || params.tls === true,
|
||||
'skip-cert-verify': isPresent(params.verify_cert)
|
||||
? !params.verify_cert
|
||||
|
||||
Reference in New Issue
Block a user