mirror of
https://github.com/sub-store-org/Sub-Store.git
synced 2025-08-10 00:52:40 +00:00
Fixed QX vmess method auto
This commit is contained in:
@@ -154,7 +154,12 @@ function vmess(proxy) {
|
||||
const appendIfPresent = result.appendIfPresent.bind(result);
|
||||
|
||||
append(`vmess=${proxy.server}:${proxy.port}`);
|
||||
append(`,method=${proxy.cipher}`);
|
||||
if (proxy.cipher === 'auto') {
|
||||
append(`,method=none`);
|
||||
} else {
|
||||
append(`,method=${proxy.cipher}`);
|
||||
}
|
||||
|
||||
append(`,password=${proxy.uuid}`);
|
||||
|
||||
// obfs
|
||||
|
||||
Reference in New Issue
Block a user